通过浏览器按钮打开[ionic 4/5应用程序打开

问题描述 投票:0回答:2

我想通过单击设备浏览器按钮来打开特定的应用程序页面(使用ionic 4开发)。有人可以帮忙吗?

ionic-framework ionic4 ionic-native
2个回答
0
投票

您可以使用ionic的InAppBrowser。这是插件https://ionicframework.com/docs/native/in-app-browser

的链接

如果要在应用程序中打开,只需在打开时传递以下参数,


  constructor(
   ...
    private iab: InAppBrowser
  ) {}

openInAppBrowser(){
  this.iab.create(`url`, '_self', {
        location: 'no'
      });
}

0
投票
try this window.open(url, target, options);

ref:对InAppBrowser窗口的引用。 (InAppBrowser)

url:要加载的URL(字符串)。如果URL包含Unicode字符,请对此调用encodeURI()。

target:加载URL的目标,这是一个可选参数,默认为_self。 (字符串)

_ self:如果URL在白名单中,则在Cordova WebView中打开,否则在InAppBrowser中打开。_blank:在InAppBrowser中打开。_system:在系统的Web浏览器中打开。options:InAppBrowser的选项。可选,默认为:location = yes。 (字符串)

© www.soinside.com 2019 - 2024. All rights reserved.