我正在尝试使用angularjs破坏离子模态,这是隐藏和破坏模态的按钮代码
<button style="border: 3px solid red; border-radius:5px; color: #ff6000" class="button button-clear button-positive" ng-click="closeNewPost(1);content= '' ">Close</button>
//关闭新任务模式
$scope.closeNewPost = function(index) {
if (index == 1) {
$scope.postModal.hide();
$scope.content = '';
// $scope.postModal.dismiss();
alert("another option4");
$scope.postModal.destroy();
} else {
alert("close option 2");
$scope.selectModal.hide();
}
以上代码隐藏了模态但从不破坏模态。请问是什么问题?
答案 0 :(得分:0)
我能够通过调用这行代码来破坏模态:
$scope.postModal.remove();
但是除非我刷新应用程序,否则模态永远不会再出现。