Angular指令手表不起作用

时间:2016-03-05 08:16:50

标签: javascript angularjs directive watch

我在控制器中有对象

$scope._id = '12345';
$scope.messages = {
    '12345': [
        {
        author: 'Vasya',
        message: 'Message from Vasya'
        },
        {
            author: 'Bob',
            message: 'Message from Bob'
        }]
};

Html标签:

<div message-list="{{_id}}")></div>

我的指示:

var App = angular.module('app', [])
.directive("messageList", function() {
    return {
        link: function(scope,element,attrs) {          
            scope.$watch('messages[attrs.messageList]', function(newVal,oldVal) {
                if (newVal!==oldVal)
                {
                    console.log("newVal",newVal);
                    console.log("oldVal",oldVal);
                }
            },true);
        }
    }
});

但是当我将新元素推入数组$ scope.messages ['12345']时,手表不起作用。

1 个答案:

答案 0 :(得分:0)

这是一个plunkr.在查看plunker时打开控制台以查看更改。

(rest m)对象上需要$watch

messages