$watch, чтобы проверить переменную, определенную в области видимости AngularJS
У меня есть следующая директива для отображения предупреждений, поэтому я хочу, чтобы при изменении времени показа переменная на звездочку запускался тайм-аут, как мне это сделать?
функция ссылки была вызвана только в первый раз, но все переменные show, message и type были неопределены
Директивный код
angular.module('pysFormWebApp')
.directive('alertDirective',
function alertDirective ($timeout) {
return {
restrict : 'E',
scope : {
message : "=",
type : "=",
show : "=",
test : "="
},
controller : function ($scope) {
$scope.closeAlert = function () {
$scope.show = false;
$scope.type = "alert alert-dismissable alert-";
$scope.message = "";
};
$scope.getStrongMessage = function (type) {
var strongMessage = "";
if(type == "success"){
strongMessage = "\xC9xito ! ";
} else if(type == "warning"){
strongMessage = "Cuidado ! ";
return strongMessage;
}
},
link: function(scope, element, attrs) {
scope.$watch(scope.show,
function (newValue) {
console.log(newValue);
},true);
},
templateUrl : "views/utilities/alert.html"
};
});
HTML-код директивы
<div ng-show="show">
<div class="alert alert-dismissable alert-{{type}}">
<button type="button" class="close" ng-click="closeAlert()">×</button>
<strong>{{getStrongMessage(type)}}</strong> {{ message | translate }}
</div>
</div>
Пример контроллера
$scope.info.alert = {
message: "EXPOTED-SUCCESS",
type: "success",
show : true
};
HTML-код
<alert-directive message="info.alert.message"
type="info.alert.type"
show="info.alert.show">
</alert-directive>
1 ответ
Решение
Вы допустили ошибку при установке watch для переменной scope. В принципе $watch
принимает 1-й параметр как string
/function
который оценивается в каждом цикле дайджеста, а вторым параметром будет функция обратного вызова
//replaced `scope.show` by `'show'`
scope.$watch('show', function (newValue) {
console.log(newValue);
},true);