私は単純なコントローラーコードを持っています:
JS
$scope.showErrorAlert = false;
$scope.switchBool = function(value) {
value = !value;
};
HTML
<div class="alert alert-error" ng-show="showErrorAlert">
<button type="button" class="close" data-ng-click="switchBool(showErrorAlert)" >×</button>
<strong>Error!</strong> {{errorTextAlert}}
</div>
コードのスニペットから、値を変更しようとしていることがわかり$scope.showErrorAlert
ます。
ただし、機能しません。value
変更はありませんshowErrorAlert
。
誰かが理由とそれを機能させる方法を教えてもらえますか?
ありがとうございました