彈出框有兩種參看博客,說一下兩種彈出框的應用場景
html
function showConfirm() { var confirmPopup = $ionicPopup.confirm({ title: '<strong>退出應用?</strong>', template: '你肯定要退出應用嗎?', okText: '退出', cancelText: '取消' }); confirmPopup.then(function (res) { if (res) { ionic.Platform.exitApp(); } else { // Don't close } }); }
官網的比較全,有四種用法
api
http://ionicframework.com/docs/api/service/$ionicPopup/ionic