我正在尝试从离子应用程序中打开一个URL,为此我实现了InApp浏览器,但是要在移动设备的外部浏览器中打开该URL,则应在应用程序内部打开该浏览器。不知道我要去哪里错了。下面是我尝试过的代码,在这方面的任何指导都非常有帮助,谢谢。.
openUrl(){
this.platform.ready().then(() => {
let url='http://192.168.0.7:8000/pay;
const browser = this.iab.create(url, '_blank',
'hidden=yes,location=yes,clearsessioncache=yes,clearcache=yes');
});
// Inject scripts, css and more with browser.X
}