我使用react-native-fetch-blob下载excel文件,这些文件存储在app / documents文件夹中,我无法在iphone中打开,我不知道iphone文档文件夹的绝对路径将文件保存在那里。
这是我的代码:
downloadFile(){
const dirs = RNFetchBlob.fs.dirs;
let context = this,
userBarRelationId = context.state.userBarId;
RNFetchBlob
.config({
fileCache : true,
path : dirs.DocumentDir + '/excel.xlsx'
})
.fetch('GET', 'http://localhost:5000/getExcel/'+userBarRelationId, {
})
.then((res) => {
console.log('The file saved to ', res.path(), res.data)
})
}