ionic app: file url: system open with dialog

馋奶兔 提交于 2019-12-25 06:45:24

问题


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


回答1:


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.




回答2:


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



来源:https://stackoverflow.com/questions/36584051/ionic-app-file-url-system-open-with-dialog

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!