私は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>