我是一个初学者 Angular 程序员,但我真的很接近理解指令。
我在这里创建了一个小提琴,但我以前从未使用过小提琴,而且它不是很渲染......
tr-row 是一个指令。我正在尝试遍历数据,并为每条记录打印一个指令(行)。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 INSIDE 的 tr-row 元素,但没有表格可以显示它们。我知道这意味着我很接近,但我想不出任何新的组合可以尝试。
我只需要一个包含行的简单表格。
如果这被问了一百万次,我很抱歉,我似乎不确定要搜索什么。我已经尝试了很多东西。