react-native-aws3:必须提供`contentType`选项和对象内容类型

时间:2019-03-18 13:31:31

标签: react-native react-native-fetch-blob react-native-fs

我创建了一个可捕获图像并将其上传到aws3的应用程序。以前,捕获的照片存储在“图片”文件夹中,而我是从“图片”文件夹上传的。现在,我将所有照片存储在我的应用程序文件夹中(我在android设备中创建了一个文件夹)。因此,它给出了以上错误。我在AWS config变量中提到contentType为“ image / jpg”。但是,这个问题无法解决。

我的代码是

import { RNS3 } from 'react-native-aws3';
import RNFS from 'react-native-fs';
import RNFetchBlob from 'react-native-fetch-blob';

     takePic = () => {

            const options = {
              quality: 1.0,
              maxWidth: 100,
              maxHeight: 100,
              base64: true,
              skipProcessing: true
          }

          // create a path you want to write to,(folder is already there)
              var pictureFolder = RNFetchBlob.fs.dirs.SDCardDir+'/School';

            ImagePicker.launchCamera(options,(responce)=>{

                this.state.testImage.push({ uri: responce.uri });
                  const file ={
                    uri   : responce.uri,
                    name : responce.fileName,
                    method: 'POST',
                    path : responce.path,
                    type :  responce.type,
                    notification: {
                        enabled: true
                      }
                  }

                  RNFetchBlob.fs.exists(pictureFolder).then((exists)=>{
                   if(exists){

                            RNFS.moveFile(responce.uri, `${pictureFolder}/${file.name}`)
                            .then(() => RNFS.scanFile(`${pictureFolder}/${file.name}`));
                            console.log("**************exists*******************");

                        }
                    })

                    this.setState(prevState => {
                        // get the previous state values for the arrays
                        let saveImages = prevState.saveImages;
                        // add the values to the arrays like before
                        saveImages.push(`${pictureFolder}/${file.name}`);
                        // return the new state
                        return {
                         saveImages
                        }
                  });

                    const base64 = RNFS.writeFile(responce.uri, responce.data);
                    return base64;

            });

        }

      _upload=()=>{
            if(this.state.connection_Status==="Online"){
              const config ={
                  keyPrefix :aws_keyPrefix,
                  bucket : 'Testing/',
                  region :aws_region,
                  accessKey:aws_accessKey,
                  secretKey :aws_secretKey,
                  successActionStatus :201,
                  contentType:'image/jpg'
                }

                //store captured images in an array
                this.state.saveImages.map((image) => {
                     RNS3.put(image,config)
                    .then((responce) => {
                      Alert.alert("Successfully, uploaded");
                    });
                });

}

以前,我直接将文件详细信息存储如下,

 saveImages.push(file);

我很好。但是,现在我需要从其他文件夹上传它们,所以我正面临这个问题。

有人可以帮助我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我收到此错误,因为文件“类型”未定义。 实际上,文件的类型不应为“未定义/空”。我认为在配置中传递contentType没关系。