当用 AngularJS 提交表单并使用浏览器记住密码功能时,在随后的登录尝试中,你让浏览器用用户名和密码填写登录表单,$scope
模型不会根据自动填写而改变。
我发现的唯一肮脏的黑客行为是使用以下指令:
app.directive("xsInputSync", ["$timeout" , function($timeout) {
return {
restrict : "A",
require: "?ngModel",
link : function(scope, element, attrs, ngModel) {
$timeout(function() {
if (ngModel.$viewValue && ngModel.$viewValue !== element.val()) {
scope.apply(function() {
ngModel.$setViewValue(element.val());
});
}
console.log(scope);
console.log(ngModel.$name);
console.log(scope[ngModel.$name]);
}, 3000);
}
};
}]);
问题是 ngModel.$setViewValue(element.val());
不会改变模型,也不会改变基于 element.val()
返回值的视图。我怎么才能做到呢?