如何从React Native中的链接导入Excel文件

时间:2018-12-07 10:36:50

标签: react-native react-native-fetch-blob

我想从服务器获取一个excel文件 但我有一条警告消息

  

发送请求时出现RNFetchBlob错误:空

这是代码:

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)
    }

0 个答案:

没有答案