我是 AngularJS 的新手。我想用来ng-repeat
呈现数据列表。
每个数据<abbr class="timeago" title="2012-10-10 05:47:21"></abbr>
在渲染后都应该有一个相似的。然后我可以使用 jquery 插件timeago
把它变成人类友好的文本about 1 hour ago
。
我的代码如下。但它没有任何效果。请帮忙。
编辑:我的问题是,我可以得到正确的 html 呈现。但是代码在directive
不运行。
的HTML:
<div ng-app='weiboApp' ng-controller="WeiboListCtrl">
<table><tbody>
<tr ng-repeat='w in weibo' weiboLister='w'>
<td>{{ w.text }}></td>
<td><abbr class="timeago" title="{{ w.created }}"></abbr></td>
</tr>
</tbody></table>
</div>
js:
var module = angular
.module('weiboApp', [])
.directive('weiboLister', function () {
return {
restrict: 'A',
link: function (scope, element, attr) {
scope.watch('w', function (val) {
console.log(element); //this never run
element.find("abbr.timeago").timeago(); //this never run
}, true);
}
}
});
function WeiboListCtrl($scope, $http) {
$http.get('/api/weibo/list').success(function(data) {
$scope.weibo = data;
});
}