我想从服务器获取一个 excel 文件,但我收到一条警告消息
发送请求时出现 RNFetchBlob 错误:null
这是代码:
const url ='http://manafeth.ncsi.gov.om/admin/download/countries/import/2018/en?portTypes=land,air,sea&size=100000';
RNFetchBlob
.config({
fileCache : true,
})
.fetch('GET', url)
.then((res) => {
console.log('The file saved to ', res.path())
}).catch((err)=>{
console.log('The error is ', err)
}
)