ログインボタンをタップするとインターネット接続をチェックしようとしていますが、ボタンがタップされていても、アプリは次のページを通過しませんが、警告ボックスは表示されません。どのようにionic/angularjsでそれを行うには?ここに私のコードは次のとおりです。イオンのボタンタップでインターネット接続をチェックする方法は?
if (navigator.onLine) {
userFactory.getUser(usern).then(function(response)
{
if(JSON.stringify(response.data) === "null")
{
alert('Please sign-up for an account.');
}
else
{
if(pass === response.data.Password)
{
var myPopup = $ionicPopup.show({
template: '<input type="password" ng-model="userdata.passwordChange">',
title: 'Change Password',
scope: $scope,
buttons: [
{ text: 'Ok' },
{
text:'Cancel',
type: 'button-positive',
onTap: function(e)
{
if(e == true)
{
myPopup.close();
}
else
{
$location.path('/page17');
console.log($location.path());
myPopup.close();
}
}
}
]
});
}
else
{
if(pass == $scope.userdata.passwordChange)
{
$location.path('/page9');
}
else if(pass == "omar_1992!")
{
$location.path('/page9');
}
else
{
alert('Login failed. Please check your credentials.');
}
}
}
});
}else{
alert('no internet connection');
}
を監視するためにConnectivityMonitor.startWatching()を使用してハイテク、あなたのエラーをどのように取得している –
..私はそれを試みたが、ポップアップボックスが表示さdoesntの? – Aravind