我需要获取自定义指令范围值。 我试图访问scope.cellId里面的函数。它不起作用。能不能请任何人为此提供解决方案。
提前致谢..
这里是小提琴链接:
以下是一些控制器:
var bosAppModule = angular.module('testapp', []);
bosAppModule.controller('testCtrlr',['$scope', function($scope){
$scope.layoutData =[ {layouttablecelltableid:"dsafdasfasdf"},{layouttablecelltableid:"aaaaaa"}]
}]);
bosAppModule.directive('layoutTableCellView',function($compile){
var layoutTableCellObj={};
linkFnTableCell=function(scope, element, attributes, controllerCtrl) {
console.log("#####"+scope.cellId);
};
layoutTableCellObj.restrict='AE';
layoutTableCellObj.replace='true';
layoutTableCellObj.scope={layoutData:'=',cellId:'@'};
layoutTableCellObj.template="<div cell-id='tablecell.layouttablecelltableid' style='background-color:grey;height:200px;' layout-data='layoutData' ng-repeat='tablecell in layoutData' >{{tablecell.layouttablecelltableid}}</div>";
layoutTableCellObj.link = linkFnTableCell;
return layoutTableCellObj;
});
这是HTML:
<div ng-app="testapp">
<div ng-controller="testCtrlr">
<layout-table-cell-view> </layout-table-cell-view>
</div>
</div>
答案 0 :(得分:1)
我不确定我是否明白你要在那里实现的目标。你能提供更多细节吗?我已经清理了你的小提琴,因为它有点乱,角度没有为我加载:
https://jsfiddle.net/6xLt4pja/1/
指令:
bosAppModule.directive('layoutTableCellView', [
function () {
return {
restrict: 'AE',
template: "<div style='background-color:grey;height:200px;' ng-repeat='tablecell in layoutData'>{{tablecell.layouttablecelltableid}}</div>",
scope: {
layoutData:'='
},
link: function (scope) {
console.log('SCOPE: ', scope.layoutData);
}
};
}
]);
和html:
<div ng-app="testapp">
<div ng-controller="testCtrlr">
<layout-table-cell-view layout-data="layoutData"></layout-table-cell-view>
</div>
</div>
答案 1 :(得分:0)
不完全确定您的目标,但是如果您想要访问已经声明的范围值,您可以在函数中访问它们:
linkFnTableCell = function(scope, element, attributes, controllerCtrl) {
console.log("#####" + scope.cellId); // your own log
for(var i = 0; i < scope.layoutData.length; i++){
console.log("#####" + scope.layoutData[i].layouttablecelltableid);
}
};
这将为您提供所有内部ID - 如果您想要cellId,语法将变得更复杂