本文介绍了如何通过 React Native 在 3rd 方应用程序中打开 pdf 文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我不想使用 RN 库来创建 pdf 查看器,我想单击文件图标并询问我想在哪个已安装的应用程序中打开文件.
I don't want to use RN libraries to create a pdf viewer, I'd like to click on a file icon and be asked in which installed application would I like to open the file.
是否有任何图书馆允许我这样做?
Is there any library that allows me that?
推荐答案
我用过 rn-fetch-blob 在我的项目中.之后就简单了;
I have used rn-fetch-blob in my project. After that, it's easy as doing;
安卓
const android = RNFetchBlob.android;
android.actionViewIntent(path, 'application/pdf');
iOS
RNFetchBlob.ios.openDocument(path);
这篇关于如何通过 React Native 在 3rd 方应用程序中打开 pdf 文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!