アプリケーションを作成しましたが、ディレクティブを持っている angularjs です。$rootScope 変数が変更されたときにディレクティブ内のいくつかのメソッドをトリガーするために、ディレクティブ内にウォッチを配置していますが、問題は $rootScope.name の場合です。値が変更されました ディレクティブ内にあるウォッチが機能していません
私のコードは以下のとおりです
var module = angular.module('myapp', []);
module.controller("TreeCtrl", function($scope, $rootScope) {
$scope.treeFamily = {
name : "Parent"
};
$scope.changeValue = function()
{
$rootScope.name = $scope.userName;
};
});
module.directive("tree", function($compile) {
return {
restrict: "E",
transclude: true,
scope: {},
template:'<div>sample</div>',
link : function(scope, elm, $attrs) {
function update()
{
};
scope.$watch('name', function(newVal, oldVal) {
console.log('calling');
update();
}, true);
}
};
});