标签: ionic
如果没有手动关闭提醒弹出窗口,则无法关闭网页重定向。那么问题是什么?如何关闭提醒弹出窗口。
$ionicPopup.alert({title:"error",template:"error"});
答案 0 :(得分:0)
您可以使用返回的promise的close函数以编程方式关闭弹出窗口。
close
popup = $ionicPopup.alert({title:"error",template:"error"}); //then... popup.close();
Check the documentation