在Angular 2中设置img标签的最佳方式是什么?
这不工作(而不是因为关键):
<img src="//maps.googleapis.com/maps/api/streetview?size=400x400&location="{{property.lat}},{{property.long}}"key=aiwefmboij234blahblah" />
我们如何将lat / long值传递给src属性?
谢谢,
没有必要关闭“在src属性,如果你关闭它,它将渲染器像这样:
原文链接:https://www.f2er.com/angularjs/142708.html<img src="//maps.googleapis.com/maps/api/streetview?size=400x400&location=" 12.121212,13.31133 "&key=aiwefmboij234blahblah" />
哪个不正确的HTML;
一个正确的方法:
<img src="//maps.googleapis.com/maps/api/streetview?size=400x400&location={{property.lat}},{{property.long}}&key=aiwefmboij234blahblah" />
另一种方法是在组件上构建url并将其分配给一个变量,然后:
<img [src]="urlVariable" />