我想$scope
在以下两个指令之间分享:
One23SRCApp.directive('directive1',function() {
return {
restrict: "A",
scope:true,
link: function (scope, element, attrs) {
scope.tablename = "table";
}
};
});
One23SRCApp.directive('directive2',function() {
return {
restrict: "A",
link: function (scope, element, attrs) {
var tablename = scope.tablename;
}
};
})
在 HTML 中,我有:
<input type="text" directive2 placeholder="Search Models...">
<table directive1>
<tr>
<td>column1</td>
<td>column1</td>
</tr>
</table>
我已经创建了名为“directive1”的指令,具有独立的范围,将名称“table”分配给了scope.tablename
属性。我无法在其他指令中访问此范围属性。
那么我怎样才能在另一个指令中访问一个指令的范围呢?