gpt4 book ai didi

onsen-ui - 我需要在 Onsen Ui 中启动外部网站

转载 作者:行者123 更新时间:2023-12-02 19:00:03 27 4
gpt4 key购买 nike

我需要在 Onsen Ui 中启动外部网址/网站,而无需离开应用程序。我猜想我可以在需要的 ons-page 标签之间使用 iframe,但可能不太可靠。

这是我的第一个 Onsen Ui 项目。

吉米

最佳答案

只需在 OnsenUI 上使用以下方法即可

<a href="www.example.com">Link</a>

将销毁整个应用程序(Web View )并用外部 HTML 资源替换。

<小时/>

解决方案:所以你可能需要 cordova-plugin-inappbrowser 的帮助插件。

就你而言,无需离开应用程序即可在 Onsen Ui 中启动外部网址/网站,您需要“_self”或“_blank”(“_blank”用于下面的示例代码)

// opts is optional depend on your requirements
var opts = 'location=yes';
var ref = cordova.InAppBrowser.open('http://www.example.com', '_blank', opts);

或者你可以使用 ngCordova 的 $cordovaInAppBrowser

angular.module('app')
.controller('ctrl', ['$cordovaInAppBrowser', function($cordovaInAppBrowser) {
var opts = {location: 'yes'};
$cordovaInAppBrowser.open('http://www.example.com', '_blank', opts);
}]);

关于onsen-ui - 我需要在 Onsen Ui 中启动外部网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34091912/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com