我目前正在研究Cordova应用程序,并且没有一份文档非常清楚这三种显示网站的方法之间的区别。
这是关于文档的范围,任何地方:
_self - opens in the Cordova WebView if url is in the white-list, else it opens in the InAppBrowser
_blank - always open in the InAppBrowser
_system - always open in the system web browser
此外,它没有说明我必须使用白名单网址。有什么建议吗?
答案 0 :(得分:2)
_system选项将在手机的默认浏览器中切换并打开。
_blank选项将从应用程序中滑动打开带有浏览器控件的新窗口并在其中打开,您可以关闭它以返回上一个视图。
_self选项将在应用程序窗口中打开,无法返回上一个视图。
白名单应该在config.xml中完成,这里是白名单的文档:Cordova white-listing