1

我已经使用该react-native-fs库通过我的应用程序下载图像。下载显示已完成,但图像仍然没有出现在手机中的任何地方。该文件夹显示修改日期,但那里没有图像。

我正在调用的函数:

RNFS.downloadFile({ fromUrl: 'https://facebook.github.io/react-native/img/header_logo.png', toFile: '${RNFS.DocumentDirectoryPath}/react-native-hello.png', }).promise.then((r) => { console.log("download done"); this.setState({ isDone: true }) });

谁能帮我解决这个问题?

4

1 回答 1

0
  Try this code:



  actualDownload = () => {
      let url = 'https://facebook.github.io/react-native/img/header_logo.png'
      let name = 'logo.png'
      let dirs = RNFS.DocumentDirectoryPath/MyApp;
      console.log("--path--",dirs)
      const file_path = dirs +'/'+name

      RNFS.readFile(url, 'base64')
      .then(res =>{
        this.setState({resBase64:res})
        let base64 = this.state.resBase64
        RNFS.writeFile(file_path,base64,'base64')
        .catch((error) => {
          console.log("err",error);
        });
      });
    }
于 2019-08-26T13:06:07.400 回答