File Opener
This plugin will open a file on your device file system with its default application.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic 打开文件File Opener插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic 打开文件File Opener插件支持的平台(Supported Platforms)
- Android
- iOS
- Windows
- Windows Phone 8
Ionic 打开文件File Opener插件的用法(Usage)
import { FileOpener } from '@ionic-native/file-opener/ngx';
constructor(private fileOpener: FileOpener) { }
...
this.fileOpener.open('path/to/file.pdf', 'application/pdf')
.then(() => console.log('File is opened'))
.catch(e => console.log('Error opening file', e));
this.fileOpener.showOpenWithDialog('path/to/file.pdf', 'application/pdf')
.then(() => console.log('File is opened'))
.catch(e => console.log('Error opening file', e));