URLを開くにはURLをクリックしてください。$cordovaInAppBrowser.open(url, '_blank', options)
InAppBrowserを開くと私は奇妙な動作をします。
これはあなたがオプションの下に試すことができます私のコード
var options = {
location: 'yes',
clearcache: 'yes',
toolbar: 'no'
};
$cordovaInAppBrowser.open(url, '_blank', options)
.then(function (event) {
// success
})
.catch(function (event) {
// error
});