1

在使用 react-native 应用程序时,我在两个平台(iOS 和 Android)中都遇到了以下问题

环境:

"react-native": "^0.61.1",
"rn-fetch-blob": "^0.12.0"

我正在做一个将视频上传到服务器的多部分请求。鉴于此请求需要时间,我想向用户展示进度。

根据库文档,有一个uploadProgress回调:https ://github.com/joltup/rn-fetch-blob#uploaddownload-progress但在我这边不起作用。

这是我的代码:

RNFetchBlob.fetch(
    'POST',
    `${REACT_APP_API_DOMAIN}/upload/video`,
    {
      Authorization: `Bearer ${token}`,
      timestamp: `${timestamp}`,
      'Content-Type': 'multipart/form-data',
    },
    [
      {
        name: 'video',
        filename: `video.${file.split('.')[file.split('.').length - 1]}`,
        data: RNFetchBlob.wrap(file),
      },
    ],
  )
    .then(() => {
      Notifier.showNotification({
        title: 'The videos was successfully saved!',
        description: "We're processing it, your profile will be updated soon!",
        Component: NotifierComponents.Alert,
      });
      setStatus(statusEnum.PROCESSING);
      completeCallback();
    })
    .uploadProgress((written, total) => {
      console.log('uploaded', written / total);
    })
    .catch(err => {
      Notifier.showNotification({
        title: 'There was an error uploading the video',
        description: err.toString(),
        Component: NotifierComponents.Alert,
        componentProps: {
          alertType: 'error',
        },
      });
      setStatus(statusEnum.FAILED);
      completeCallback();
    });

有什么想法吗?

4

1 回答 1

0

这个问题在这里得到了回答:https ://github.com/joltup/rn-fetch-blob/issues/670#issuecomment-696016355

基本上我不得不交换thenuploadProgress回调。

于 2020-09-21T15:50:06.897 回答