标签: angularjs-directive typescript angular
我有一个带有src的img对象,它会在我的http请求后发生变化。
如何在my-custom-directive中检测此img的属性更改?
< img my-custom-directive [src]="user.photo" />
答案 0 :(得分:1)
你可以对这样的指令进行属性绑定:
<img [my-custom-directive]="user.photo" [src]="user.photo" />
Plunker:http://plnkr.co/edit/YQVR1peTxTLYZlhrZJxF?p=preview