我在控制器中有以下代码:
ViewCtrl.resolve = {
/**
* Fetching a user model from the backend to make it available to this controller.
*/
user: ['$http', 'symfony2Router', function($http, symfony2Router) {
return $http.get(symfony2Router.path('getUser')).then(function(response) {
return response.data;
});
}]
};
以及以下 html 模板:
<span data-ng-repeat="item in user.articles">
{{ item.title }}
</span>
问题是 - 我如何才能运行一段 js 代码,只有在 dom 被 angularjs 更改之后,现在用户拥有的每篇文章都有一个跨度?