我已经使用该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 })
});
谁能帮我解决这个问题?