我想调用方法setItemSrc并使用item作为参数。我该怎么做?
<img *ng-for="#item of items"
[src]="setSrc(item)"
[style.left]="item.x"
[style.top]="item.y"
(click)="clickedItem(item)">
</img>
public setItemSrc(item:Item):string{
var str:string="/img/item"
str=str.concat(item.categorie);
return str;
}
答案 0 :(得分:2)
我想调用方法setItemSrc并使用item作为参数
[src]="setSrc(item)"
应为[src]="setItemSrc(item)"