rn-fetch-blob 错误:RNFetchBlob.fetchBlobForm 未能创建请求正文

Rah*_*kya 3 reactjs react-native react-redux react-native-ios rn-fetch-blob

async postFileUpload(payload) {
    const rnfetchfile = RNFetchBlob.wrap(payload.uri);
    try {
    console.log(
        'POST',
        'https://******.***.**/******/***/upload_*******_file',
        {
          ...this.config,
          'Content-Type': 'multipart/form-data',
        },
        [
          // element with property `filename` will be transformed into `file` in form data
          {
            name: 'files',
            filename: payload.name,
            data: rnfetchfile.replace('file://file:///', 'file://'),
          },
        ],
      );
      const res = await RNFetchBlob.fetch(
        'POST',
        'https://******.***.**/******/***/upload_*******_file',
        {
          ...this.config,
          'Content-Type': 'multipart/form-data',
        },
        [
          // element with property `filename` will be transformed into `file` in form data
          {
            name: 'files',
            filename: payload.name,
            data: rnfetchfile.replace('file://file:///', 'file://'),
          },
        ],
      );
    const response = JSON.parse(res.data);
      console.log('api upload adpostimage', response);
      return response;
    } catch (err) {
      console.log('postFileUpload', err.response, err);
      Toast.show(err.response.data.message, Toast.SHORT);
      throw err.response.data;
    }
Run Code Online (Sandbox Code Playgroud)

res 在控制台消息中引发错误是

POST https://******.***.**/******/***/upload_*******_file {Content-Type: "multipart/form-data", Authorization: "Bearer ******.***.*****"} 
[{…}]
0:
name: "files"
filename: "*****.pdf"
data: "RNFetchBlob-file://Users/********/tmp/*****/B****.pdf"}
Run Code Online (Sandbox Code Playgroud)
postFileUpload undefined Error: RNFetchBlob.fetchBlobForm failed to create request body
at index.js:313
at MessageQueue.__invokeCallback (MessageQueue.js:483)
at MessageQueue.js:135
at MessageQueue.__guard (MessageQueue.js:384)
at MessageQueue.invokeCallbackAndReturnFlushedQueue (MessageQueue.js:134)
at debuggerWorker.js:69
Run Code Online (Sandbox Code Playgroud)

我正在尝试使用 rn-fetch-blob 上传文件,但发生了一些疯狂的事情 rnfetchfile.replace('file://file:///', 'file://'), 因为 file://file/ // 输出似乎不正确我认为这主要是 ios 问题,请帮助我

Rez*_*aei 11

正如这里所说的只是使用decodeURIComponent(uri)

这是我的代码:

const realPath = Platform.OS === 'ios' ? uri.replace('file://', '') : uri;

const data = [
  {
     name: 'file',
     filename,
     type,
     data: RNFetchBlob.wrap(decodeURIComponent(realPath)),
  },
  {name: 'bla', data: 'bla'}
]
Run Code Online (Sandbox Code Playgroud)


Rah*_*kya 0

尝试将 file://file:// 替换为 '' 空字符串..

\n\n
rnfetchfile.replace('file://file:///', '') \n
Run Code Online (Sandbox Code Playgroud)\n\n

\xe2\x80\x93 @Abhishek Ghosh 评论说这是一个需要的技巧,它可以工作,但该文件在 uri 中不可用..您上传的文件将无法打开

\n\n

我尝试做

\n\n
data: decodeURIComponent(rnfetchfile.replace('file://file:///', 'file:///')\n
Run Code Online (Sandbox Code Playgroud)\n\n

它有效希望这有帮助

\n