我有使用angular-ui的角度應用程序。我需要模態窗口。我的模態窗口的模板:Angular-ui模態窗口只打開一次
<div modal="shouldBeOpen" close="close()" options="opts">
<div class="modal-header">
<h3>Create new entry</h3>
</div>
<div class="modal-body" ng-repeat="e in create_elements">
{{e}}
</div>
<div class="modal-footer">
...
</div>
</div>
和處理程序打開和關閉:
$scope.open = function(){
$scope.shouldBeOpen = true;
}
$scope.close = function(){
$scope.shouldBeOpen = false;
}
但它僅打開1次,之後單擊打開按鈕不會做任何影響。如何解決它?
謝謝。