Rise Company
27-07-2017, 14:55
اظهار رسالة لا يوجد انترنت بدلا من خطا ERR_INTERNET_DISCONNECTED - الايونك Ionic
There are often times where you need to display No internet connection message to your users
inside your Ionic Framework Android and iOS application.
Add Network information cordova pluginInorder to check internet connection, you need to have network information cordova plugin.
cordova plugin add org.apache.cordova.network-information
Check for internet connection inside Platform readyNow, you have to check the internet connection inside platform ready as follows
angular.module('myApp', ['ionic'])
.run(function($ionicPlatform, $ionicPopup) {
$ionicPlatform.ready(function() {
// Check for network connection
if(window.Connection) {
if(navigator.connection.type == Connection.NONE) {
$ionicPopup.confirm({
title: 'No Internet Connection',
content: 'Sorry, no Internet connectivity detected. Please reconnect and try again.'
})
.then(function(result) {
if(!result) {
ionic.Platform.exitApp();
}
});
}
}
});
})
There are often times where you need to display No internet connection message to your users
inside your Ionic Framework Android and iOS application.
Add Network information cordova pluginInorder to check internet connection, you need to have network information cordova plugin.
cordova plugin add org.apache.cordova.network-information
Check for internet connection inside Platform readyNow, you have to check the internet connection inside platform ready as follows
angular.module('myApp', ['ionic'])
.run(function($ionicPlatform, $ionicPopup) {
$ionicPlatform.ready(function() {
// Check for network connection
if(window.Connection) {
if(navigator.connection.type == Connection.NONE) {
$ionicPopup.confirm({
title: 'No Internet Connection',
content: 'Sorry, no Internet connectivity detected. Please reconnect and try again.'
})
.then(function(result) {
if(!result) {
ionic.Platform.exitApp();
}
});
}
}
});
})