這讓我有點瘋狂。我需要一個自定義的屬性中讀出的圖像的src:在ng-repeat中使用的自定義指令中獲取元素屬性
app.directive('imgTransform', function() {
return {
retrict: 'A',
link: function (scope, elem, attrs) {
console.log(elem.attr('ng-src'));
}
}
});
使用像這樣的時候也能正常工作:
<img ng-src='http://lorempixel.com/100/100/technics' alt="" img-transform="" />
然而,這並不裏面ng-repeat
工作:
<p ng-repeat='image in images'>
<img ng-src='{{image}}' alt="" img-transform="" />
</p>
返回的值是{{image}}
。我如何獲得實際價值?