$watch'ing Angular 指令中的数据变化

IT技术 javascript angularjs angularjs-directive
2021-03-01 16:30:10

如何$watch在操作内部数据(例如,插入或删除数据)时触发Angular 指令中变量,但不为该变量分配新对象?

我有一个当前正在从 JSON 文件加载的简单数据集。我的 Angular 控制器执行此操作,并定义了一些函数:

App.controller('AppCtrl', function AppCtrl($scope, JsonService) {
    // load the initial data model
    if (!$scope.data) {
        JsonService.getData(function(data) {
            $scope.data = data;
            $scope.records = data.children.length;
        });
    } else {
        console.log("I have data already... " + $scope.data);
    }

    // adds a resource to the 'data' object
    $scope.add = function() {
        $scope.data.children.push({ "name": "!Insert This!" });
    };

    // removes the resource from the 'data' object
    $scope.remove = function(resource) {
        console.log("I'm going to remove this!");
        console.log(resource);
    };

    $scope.highlight = function() {

    };
});

我有一个<button>正确调用该$scope.add函数的函数,并且新对象已正确插入到$scope.data集合中。每次我点击“添加”按钮时,我设置的表格都会更新。

<table class="table table-striped table-condensed">
  <tbody>
    <tr ng-repeat="child in data.children | filter:search | orderBy:'name'">
      <td><input type="checkbox"></td>
      <td>{{child.name}}</td>
      <td><button class="btn btn-small" ng-click="remove(child)" ng-mouseover="highlight()"><i class="icon-remove-sign"></i> remove</button></td>
    </tr>
  </tbody>
</table>

但是,$scope.data当所有这些发生时,我设置为监视的指令不会被触发。

我在 HTML 中定义我的标签:

<d3-visualization val="data"></d3-visualization>

与以下指令相关联(为了问题的完整性而进行了调整):

App.directive('d3Visualization', function() {
    return {
        restrict: 'E',
        scope: {
            val: '='
        },
        link: function(scope, element, attrs) {
            scope.$watch('val', function(newValue, oldValue) {
                if (newValue)
                    console.log("I see a data change!");
            });
        }
    }
});

"I see a data change!"一开始就收到消息,但在我点击“添加”按钮之后就再也没有收到消息。

$watch当我只是从data对象中添加/删除对象,而不是获取一个全新的数据集来分配给对象时,如何触发事件data

3个回答

您需要启用深度对象脏检查。默认情况下,angular 仅检查您观察的顶级变量的引用。

App.directive('d3Visualization', function() {
    return {
        restrict: 'E',
        scope: {
            val: '='
        },
        link: function(scope, element, attrs) {
            scope.$watch('val', function(newValue, oldValue) {
                if (newValue)
                    console.log("I see a data change!");
            }, true);
        }
    }
});

范围$watch 函数的第三个参数启用深度脏检查,如果它设置为 true。

请注意,深度脏检查是昂贵的因此,如果您只需要查看子数组而不是整个data变量,请直接查看变量。

scope.$watch('val.children', function(newValue, oldValue) {}, true);

1.2.x 版引入了$watchCollection

Shallow 监视对象的属性并在任何属性更改时触发(对于数组,这意味着监视数组项;对于对象映射,这意味着监视属性)

scope.$watchCollection('val.children', function(newValue, oldValue) {});
我相信限制应该是“EA”。
2021-04-28 16:30:10
$watchCollection是我需要的答案。干杯!
2021-05-10 16:30:10
是否有与 $watch 不同的替代方案来“观察”变化?请告诉我。
2021-05-11 16:30:10
很遗憾,我不能多次投票……我会给你一个赏金,因为我失去了寻找那个的 2 小时。
2021-05-16 16:30:10
乐意效劳。继续尝试 $watch 函数,因为它可以观察到的表达式是多种多样的。
2021-05-17 16:30:10

因为如果你想用深度触发你的数据,你必须传递true你的监听器的第三个参数。默认情况下false,它意味着你的函数会触发,只有当你的变量不会改变它的字段时

我的指令版本使用 jqplot 在数据可用后绘制数据:

    app.directive('lineChart', function() {
        $.jqplot.config.enablePlugins = true;

        return function(scope, element, attrs) {
            scope.$watch(attrs.lineChart, function(newValue, oldValue) {
                if (newValue) {
                    // alert(scope.$eval(attrs.lineChart));
                    var plot = $.jqplot(element[0].id, scope.$eval(attrs.lineChart), scope.$eval(attrs.options));
                }
            });
        }
});