Firebase Storage: String does not match format 'base64': Invalid character found

前端 未结 4 1280
南旧
南旧 2021-02-19 05:15

I\'m working on a react-native and I need to upload an image to Firebase using Firebase Storage. I\'m using react-native-image-picker to select the image from the phone which gi

4条回答
  •  说谎
    说谎 (楼主)
    2021-02-19 06:17

    image.substring(23)

    function uploadImage(image){
          const user = getCurrentUser();
          const refImage = app.storage().ref(`profileImages/${user.uid}`);
    
          refImage.putString(image.substring(23), 'base64').then(() => {
            console.log('Image uploaded');
          });
        }
    

提交回复
热议问题