私は初心者の Angular プログラマーですが、ディレクティブをほぼ理解しています。
ここでフィドルを作成しますが、これまでフィドルを使用したことがなく、レンダリングがうまくいきません...
tr 行はディレクティブです。データをループして、レコードごとにディレクティブ (行) を出力しようとしています。HTML:
<table ng-controller="fiddleCtrl">
<thead>
<th>id</th>
<th>name</th>
<th>description</th>
</thead>
<tbody>
<tr><tr-row ng-repeat="d in data" scdata="d"></tr-row></tr>
</tbody>
</table>
JavaScript:
var myapp = angular.module('myApp', [])
.controller('fiddleCtrl', ['$scope', function ($scope) {
$scope.data = [
{ id: 1, name: 'Fred', description: 'not the best worker' },
{ id: 2, name: 'Wilma', description: 'Freds Wife'},
{ id: 3, name: 'Barney', description: 'Freds best friend'},
{ id: 4, name: 'Louise', description: 'Never heard of Fred'},
{ id: 5, name: 'Tracy', description: 'Some Chick'},
{ id: 6, name: 'Foo', description: 'Inventer of bar'}
];
}]).directive('trRow', function ($compile) {
return {
restrict: "E",
replace: true,
link: function (scope, element, attrs) {
scope.id = scope.d.id;
scope.name = scope.d.name;
scope.desc = scope.d.description;
var tmpl = '<tr ><td>{{id}}</td><td><strong>{{name}}</strong></td><td>{{desc}}</td></tr>';
element.html(tmpl).show();
//var e =$compile(tmpl)(scope);
//element.replaceWith(e);
var e = $compile(element.contents())(scope);
},
scope: {
d: "="
}
};
});
簡単なはずです。(ため息)
私は本当にこれを理解する必要があります。
私のコードで起こっていることは、tr-row ディレクティブがテーブルを置き換えたことです。それらのリストを取得します ( tr-row 要素の tr INSIDE を使用しますが、それらを表示するテーブルはありません。これは近いことを意味することは知っていますが、試す新しい組み合わせは思いつきません。
行を含む単純なテーブルが必要です。
これが何百万回も尋ねられた場合は申し訳ありませんが、何を検索すればよいかわからないようです。私は非常に多くのことを試しました。