如何使用rn-fetch-blob在react-native中上传文件?

时间:2019-07-25 06:00:46

标签: react-native file-upload fetch

我是本机反应的新手。我想使用rn-fetch-blob上传带有另一个参数'comment'的文件。我能够使用react-native-document-picker包来选择文件并获取文件的路径,名称,类型和大小。文件详细信息的日志为:

      const cv = require('opencv')

      cv.readImage(buf, (err, im) => {
        im.detectObject(DETECT_FACE_MODEL, {}, (detectError, faces) => {
          // do something
        })
      }

我只是将获取函数与方法'POST'一起使用,对此不确定。

console.log(res.uri, res.type, res.name, res.size);
Output:
'content://com.android.providers.downloads.documents/document/1445', 'text/html', 'hello.webp', 21476

var文件的日志:

var file = {
        name: this.type,
        filename : this.name, 
        data: RNFetchBlob.wrap(this.uri)
    };

方法:

{ name: 'text/html',
│ filename: 'hello.webp',
└ data: 'RNFetchBlob-content://content://com.android.providers.downloads.documents/document/1445' }

我尝试使用RNFetchBlob方法,但不知道如何传递其他参数:

fetch('https://beta.hellonepal.io/api/v1/comments',
          {
            method: 'POST',
            headers:
            {
              'Accept': 'application/json',
              'Content-Type' : 'multipart/form-data',
              'Authorization': 'Bearer '+ global.apiToken,
            },
            body: JSON.stringify(
            {
              comment: this.state.newComment,
              comment_file : file
            })

          })
          .then(response => {
            return response.json()
          })
          .then(RetrivedData => {
            console.log(RetrivedData);

          })
          .catch(err => {
            // Do something for an error here
            console.log('Error in adding a comment');
          });
        });

1 个答案:

答案 0 :(得分:1)

您可以按以下方式更改上载:

Content-Type应该是json,因为您的body类型是json

 let formdata = new FormData();
     formdata.append("comment", this.state.newComment);
     formdata.append("comment_file", file);
RNFetchBlob.fetch('POST', 'https://beta.hellonepal.io/api/v1/comments', {
    Authorization : 'Bearer '+ global.apiToken,
    body: formdata,
    'Content-Type' : "multipart/form-data",
  })
  .then((response) => response.json())
  .then((RetrivedData) => {
      console.log(RetrivedData);
  })
  .catch((err) => {
    console.log('Error in adding a comment');
  })