在查看了 AngularJS(和相关)文档和其他有关指令内隔离范围的 stackoverflow 问题后,我仍然有点困惑。为什么我不能在父范围和指令隔离范围之间进行双向绑定,其中父范围属性是对象而不是属性?我应该只使用所需的属性scope.$parent
吗?这似乎是错误的。在此先感谢您的帮助。
相关的小提琴在这里。
HTML:
<div ng-app="myApp">
<div ng-controller="myCtrl">
<div my-directive>{{test.name}}</div>
</div>
</div>
JavaScript:
var myApp = angular.module('myApp', []);
myApp.controller('myCtrl', function ($scope) {
$scope.test = {name:"name", value:"value"};
});
myApp.directive("myDirective", function () {
return {
replace: true,
restrict: 'A',
scope: {test: '='},
template: '<div class="parent"><div>This is the parent Div.</div><div>Value={{test}}</div></div>',
link: function (scope, element, attrs) {
console.log("scope.test=["+scope.test +"]");
console.log("scope.$parent.test=["+scope.$parent.test.name+"]");
}
};
});