我是 Angular JS 的新手,我正在尝试创建一个自定义指令,如下所示:
<div linkedlist listcolumns="{{cashAccountsColumns}}"></div>
军团。控制器将是:
$scope.cashAccountsColumns = [
{"field": "description", "title": "Description"},
{"field": "owner", "title":"Owner"},
{"field": "currentBalance", "title":"Current Balance" }
];
指令代码是:
return {
restrict : 'EA',
transclude : false,
templateUrl : 'html/linkedlist.html',
scope: {
listcolumns: "@"
},
link : function(scope, element, attrs) {
}
}
模板是:
<table class="box-table" width="100%">
<thead>
<tr>
<th scope="col" ng-repeat="column in listcolumns">
{{column.title}}
</th>
</tr>
</thead>
</table>
但这不起作用。我没有在屏幕上获得 column.title 的值,而是将以下太多行添加到 DOM:
<th ng-repeat="column in listcolumns" scope="col" class="ng-scope ng-binding"></th>