那麼,我建議改爲使用in-app-browser
,在離子導入您的網站,並在默認的網絡視圖離子提供。
至於回答你的問題而言,你可以在你的應用程序離子回調$ionicPlatform.ready
使用它,在你www/js/app.js
.run(function($ionicPlatform,$location,$rootScope) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if(window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if(window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
}
//your in-app-plugin code here
window.open('http://www.examplewebsite.com', '_self', 'location=no');
return false;
});
})
希望它能幫助。
你剛纔添加應用,瀏覽器插件後,在app.js文件後window.open(‘http://www.examplewebsite.com’! ,'_self','location = no');沒有別的。喲,不需要添加任何依賴。 –