react-native-file-viewer在我的应用程序中不起作用

时间:2017-12-20 09:05:13

标签: javascript reactjs react-native

我尝试在我的应用中使用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);
        });
    }

但是当它给我这个错误时:

enter image description here

你有任何线索吗?

1 个答案:

答案 0 :(得分:0)

我个人使用react-native-pdf-view用于android和webView for ios,你也可以使用google doc技巧在android webView中阅读pdf,但它需要连接(更多信息here