AngularJS – $watch一个对象

前端之家收集整理的这篇文章主要介绍了AngularJS – $watch一个对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想监视字典中的更改,但由于某些原因没有调用watch回调。

这里是我使用的控制器:

function MyController($scope) {
    $scope.form = {
        name: 'my name',surname: 'surname'
    }

    $scope.$watch('form',function(newVal,oldVal){
        console.log('changed');
    });
}

这里是小提琴:http://jsfiddle.net/Y8ByG/

我期望$ watch回调被触发每次名称或姓氏改变,但它不会发生。

什么是正确的方法呢?

调用$ watch,使用true作为第三个参数:

$scope.$watch('form',oldVal){
    console.log('changed');
},true);

默认情况下,当在JavaScript中比较两个复杂对象时,将检查它们是否为“引用”相等,这将询问这两个对象是否引用相同的事物,而不是“值”相等,检查那些属性的值对象是相等的。

Angular documentation,第三个参数是objectEquality:

When objectEquality == true,inequality of the watchExpression is determined according to the 07001 function. To save the value of the object for later comparison,the 07002 function is used. This therefore means that watching complex objects will have adverse memory and performance implications.

原文链接:https://www.f2er.com/angularjs/147932.html

猜你在找的Angularjs相关文章