我在data
中有一个对象MainCtrl
。此对象用于将数据传递到指令first-directive
和second-directive
。两种情况都需要双数据绑定。
对于first-directive
,我传递完整的对象data
,但对于second-directive
,我想传递numbers
对象(scope.numbers = scope.dataFirst.numbers
)。
问题:
当我<div second-directive="dataFirst.numbers"></div>
时,我检查dataSecond
是否为对象,它会返回true
。
但当我<div second-directive="numbers"></div>
并检查dataSecond
是否为对象时,它会返回false
。
在这两种情况下,如果我console.log(scope)
,则会显示scope.dataSecond
属性。
问题:
为什么会发生这种情况以及将params传递给指令的正确方法是什么?
修改 这个想法是制定可重复使用的指令,这意味着他们不能依赖其他指令。
angular.module('app',[])
.controller('MainCtrl', function($scope) {
$scope.data = {
numbers: {
n1: 'one',
n2: 'two'
},
letters: {
a: 'A',
b: 'B'
}
}
})
.directive('firstDirective', function () {
return {
template: '<div class="first-directive">\
<h2>First Directive</h2>\
{{dataFirst}}\
<div second-directive="dataFirst.numbers"></div>\
<div second-directive="numbers"></div>\
</div>',
replace: true,
restrict: 'A',
scope: {
dataFirst: '=firstDirective'
},
link: function postLink(scope, element, attrs) {
console.log('first directive')
console.log(scope)
scope.numbers = scope.dataFirst.numbers;
}
};
})
.directive('secondDirective', function () {
return {
template: '<div class="second-directive">\
<h2>Second Directive</h2>\
{{dataSecond}}\
<div class="is-obj">is an object: {{isObj}}</div>\
</div>',
replace: true,
restrict: 'A',
scope: {
dataSecond: '=secondDirective'
},
link: function postLink(scope, element, attrs) {
console.log('second directive');
console.log(scope)
// <div second-directive="XXXX"></div>
// if 'numbers' returns undefined
// if 'dataFirst.numbers' returns the object
console.log(scope.dataSecond);
scope.isObj = false;
if(angular.isObject(scope.dataSecond)){
scope.isObj = true;
}
}
};
});
h2 {
padding: 0;
margin: 0;
}
.first-directive {
background: #98FFDA;
color: black;
padding: 10px;
}
.second-directive {
background: #FFA763;
color: white;
padding: 10px;
}
.is-obj {
background: blue;
}
<!DOCTYPE html>
<html ng-app="app">
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
</head>
<body ng-controller="MainCtrl">
<h2>MainCtrl</h2>
{{data}}
<div first-directive="data">
</div>
<div second-directive="data">
</div>
</body>
</html>
答案 0 :(得分:11)
我会重复我之前的其他人的说法 - link
的{{1}}功能是帖子 - 链接功能 < / em> firstDirective
的{{1}}函数,因此link
尚未分配对象secondDirective
。
然而,通过scope.numbers
紧密耦合两个指令的解决方案对我来说似乎不是最优的。
相反,要确保在内部/子指令运行之前在父级中正确分配范围属性(如scope.dataFirst.numbers
,在这种情况下)是使用 pre -link功能在require
(而不是帖子 -link)
secondDirective
<强> Demo 强>