我已經安裝了科爾多瓦 - 插件網絡信息打字工作:離子科爾多瓦網絡信息插件不是IOS
cordova plugin add cordova-plugin-network-information
加我加了NG-cordova.min.js在我的index.html。該插件使用工作在Android精品:
if(navigator.connection.type == "none"){
$ionicLoading.hide()
$ionicPopup.alert({
title: "Internet Disconnected",
content: "There is no internet connection. Please check the connection and try again."
})
.then(function(result) {
ionic.Platform.exitApp();
});
}
但在IOS(通過離子模擬IOS)的應用程序甚至不負載。任何想法?
嘗試張貼的錯誤跟蹤。否則嘗試在ios設備上安裝應用程序,並在safari中檢查任何控制檯錯誤跟蹤 – Gandhi