角2:动态图像

前端之家收集整理的这篇文章主要介绍了角2:动态图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Angular 2中设置img标签的最佳方式是什么?

这不工作(而不是因为关键):

<img src="//maps.googleapis.com/maps/api/streetview?size=400x400&location="{{property.lat}},{{property.long}}"key=aiwefmboij234blahblah" />

我们如何将lat / long值传递给src属性

谢谢,

没有必要关闭“在src属性,如果你关闭它,它将渲染器像这样:
<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" />
原文链接:https://www.f2er.com/angularjs/142708.html

猜你在找的Angularjs相关文章