用外部网站替换默认的 Ionic webview

Replace default Ionic webview with external website

我正在尝试用外部网站的内容替换默认的 Ionic Cordova webview。但是,我不希望这个外部网站打开应用内浏览器。我只是想让应用程序显示网站。

我已将以下内容添加到我的 config.xml 文件中,但这只会打开网络浏览器并转到指定的网站。

<content src="https://somewebsite.com/" />
<allow-navigation href="*://*.somewebsite.com/" />

使用 Cordova InAppBrowser (directly or with the Ionic wrapper) 并使用 _self 的目标。由于您已经将 URL 列入白名单,它应该会在网络视图中打开。

例如:cordova.InAppBrowser.create('https://somewebsite.com/', '_self', 'usewkwebview=yes')