我有一个需要一组错误的登录表单。事实是,这个登录表单通过自定义指令从左侧滑入。当我想将它滑出视线时,我需要当前的错误消失。我设置了一个$watch
函数来监视sharedInfo.getError()
服务函数的变化,但它只在控制器加载然后停止侦听更改时运行。我似乎无法让它发挥作用,我之前没有遇到任何困难就像这样使用它。我可以使用一些帮助来追踪故障。
控制器:
forumApp.controller('signinCtrl', ['$scope', 'fbRef', 'validation', 'userLogic', 'sharedInfo', function($scope, fbRef, validation, userLogic, sharedInfo) {
$scope.$watch('sharedInfo.getError()', function(newValue, oldValue) {
console.log(oldValue);
console.log(newValue);
$scope.error = newValue;
});
$scope.user = {
email: '',
password: ''
}
$scope.validate = function() {
$scope.error = validation.validateSignin($scope.user, $scope.error);
if ($scope.error) {
return false;
}
else {
userLogic.signinUser($scope.user).then(function(authData) {
sharedInfo.setAuthState(authData);
}).catch(function(error) {
switch (error.code) {
case 'INVALID_USER':
$scope.error = 'Invalid email';
sharedInfo.setError($scope.error);
break;
case 'INVALID_EMAIL':
$scope.error = 'Invalid email format';
sharedInfo.setError($scope.error);
break;
case 'INVALID_PASSWORD':
$scope.error = 'Invalid password';
sharedInfo.setError($scope.error);
break;
}
});
}
}
}]);
跟踪控制器上任何共享信息的服务:
forumApp.service('sharedInfo', [function() {
var authState;
var error;
return {
getAuthState: function() {
return authState;
},
setAuthState: function(authData) {
authState = authData;
},
getError: function() {
return error;
},
setError: function(newError) {
error = newError;
}
}
}]);
执行幻灯片的指令:
forumApp.directive('mySigninSlide', ['sharedInfo', function(sharedInfo) {
return {
restrict: 'A',
link: function($scope, element, attrs) {
element.on('click', function() {
var sidebar = $('#signin-wrapper');
if ($scope.isAnimated === undefined ||
$scope.isAnimated === false) {
sidebar.stop().animate({left: '340px'});
$scope.isAnimated = true;
}
else {
sidebar.stop().animate({left: '-606px'});
$scope.isAnimated = false;
sharedInfo.setError('');
}
});
}
};
}]);
答案 0 :(得分:1)
您必须返回正在观看的内容的值才能有效地观看
$scope.$watch(sharedInfo.getError(), function(newValue, oldValue) {
console.log(oldValue);
console.log(newValue);
$scope.error = newValue;
});
或
$scope.$watch(function () { return sharedInfo.getError(); },
function(newValue, oldValue) {
console.log(oldValue);
console.log(newValue);
$scope.error = newValue;
});
答案 1 :(得分:1)
另一种选择是将sharedInfo
放在范围内。
$scope.sharedInfo = sharedInfo;
$scope.$watch('sharedInfo.getError()', function(newValue, oldValue) {
...
});