4
我試圖將數據綁定從指令中的服務返回的值。AngularJS:綁定內部指令
我有它的工作,但我跳過箍,我懷疑有更好的方法。
例如:
<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');
}
};
是否有一種更簡潔,「有角度」的方式來實現相同的結果?
一樣傻,因爲這可能是....這可能是因爲'$範圍。$表(「user.username」)'應該是'範圍。$表( 'user.username')'? –
@MathewBerg謝謝你的發現 - 不幸的是這只是一個錯誤的帖子。 –