我已经安装了cordova-plugin-network-information typing:
cordova plugin add cordova-plugin-network-information
加上我在index.html中添加了ng-cordova.min.js。该插件在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)应用程序甚至没有加载。有什么想法吗?
答案 0 :(得分:0)
您应该尝试以下步骤。也许你的插件没有在项目的根目录中得到更新
cordova plugin remove cordova-plugin-network-information
cordova plugin add cordova-plugin-network-information
cordova build.
ionic run ios
也许这会对你有帮助:)