我正在尝试将数据绑定到指令内的服务返回的值。
我有它的工作,但我跳过箍,我怀疑有更好的方法。
例如:
<img my-avatar>
这是一个指令的同义词:
<img src="{{user.avatarUrl}}" class="avatar">
在哪里user
:
$scope.user = CurrentUserService.getCurrentUser();
这是我用来让它工作的指令:
.directive('myAvatar', function(CurrentUser) {
return {
link: function(scope, elm, attrs) {
scope.user = CurrentUser.getCurrentUser();
// Use a function to watch if the username changes,
// since it appears that $scope.$watch('user.username') isn't working
var watchUserName = function(scope) {
return scope.user.username;
};
scope.$watch(watchUserName, function (newUserName,oldUserName, scope) {
elm.attr('src',CurrentUser.getCurrentUser().avatarUrl);
}, true);
elm.attr('class','avatar');
}
};
是否有更简洁、“角度”的方式来实现相同的结果?