我在一个特定的控制器中定义了一个$ ionicPopup,比如Controller-1。当我通过将状态更改为$ state.go(' xxx.xx.xx')从任何其他不同的Controller-X移动到Controller-1时,$ ionicPopup无法按预期工作。但与此同时,如果我第一次打开Controller-1,$ ionicPopup工作正常。国家变化正在引发问题。怎么解决?
Controller-1中$ ionicPopup的代码是:
$ionicPopup.show({
title: "Delivery Not Available",
subTitle: 'Selected area is beyond our delivering area. You can place only Take Away orders.',
scope: $scope,
buttons: [{
text: 'Cancel',
onTap: function(e) {
return true;
}
},
{
text: '<b>OK</b>',
type: 'button-balanced',
onTap: function(e) {
$state.go('home.app');
}
},
]});
如果我是第一次直接从Controller-1启动它,它会按预期工作: Screenshot - Normal Case
但是,如果我使用$ state.go(&#39; xxx.xx.x&#39;)通过状态更改从任何其他州转移到Controller-1,它会显示损坏的输出: Screenshot - Failing Case
答案 0 :(得分:1)
为弹出窗口创建一个这样的函数,并在成功回调函数中调用该函数,并确保在编写成功回调的同一个控制器中有此代码
$scope.showConfirm = function() {
var confirmPopup = $ionicPopup.confirm({
title: 'Title',
template: 'Are you sure?'
});
confirmPopup.then(function(res) {
if(res) {
console.log('Sure!');
} else {
console.log('Not sure!');
}
});
};
的更多详情,请参阅此链接