我尝试在我的应用中使用react-native-file-viewer查看àpdf文件。
我已经导入了这样的lib:import FileViewer from 'react-native-file-viewer';
我做了功能:
getPdf(){
const path = '../images/Charte.pdf';
FileViewer.open(path).then((res) => {
console.log(res);
}).catch(error => {
console.log(error);
});
}
但是当它给我这个错误时:
你有任何线索吗?答案 0 :(得分:0)
我个人使用react-native-pdf-view用于android和webView for ios,你也可以使用google doc技巧在android webView中阅读pdf,但它需要连接(更多信息here )