ionic app: file url: system open with dialog

2019-09-02 04:14发布

Is it possible to show a native "Open With" dialog suggesting recommended apps, when the user taps on a http link (to a file download) in an ionic application?

Thanks, Anil

2条回答
不美不萌又怎样
2楼-- · 2019-09-02 04:40

If there are more than an installed app which support this type, the os open automatically a open with dialog

查看更多
虎瘦雄心在
3楼-- · 2019-09-02 04:53

Yes, it is possible.

Simply you can use Cordova InAppBrowser to implement it. Try below code after adding plugin:

cordova.InAppBrowser.open(file_link, '_system', "location=yes");

To be more specific you can use some other plugins such as cordova-plugin-fileopener.

查看更多
登录 后发表回答