Angular7 在 html 标记中的 img="" 上的字符串内插值会抛出 "quotes are not supported for evaluation"
Angular7 interpolating values inside a string on an img="" in the html markup throws "quotes are not supported for evaluation"
我正在制作一个在网格中显示 vimeo 视频的内部应用程序,我正在绑定每次迭代的来源并尝试像这样替换 link 模板中的视频 ID:
<iframe src="https://player.vimeo.com/video/{{ allVideos.title }}?color=25b86e&title=0&byline=0"
frameborder="0"
webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
问题是,我收到一条错误消息 "quotes are not supported for evaluation",这很奇怪,因为我过去曾这样做过。
为什么不绑定?
<iframe [src]="getVideoLinkByTitle(video.title)"></iframe>
我正在制作一个在网格中显示 vimeo 视频的内部应用程序,我正在绑定每次迭代的来源并尝试像这样替换 link 模板中的视频 ID:
<iframe src="https://player.vimeo.com/video/{{ allVideos.title }}?color=25b86e&title=0&byline=0"
frameborder="0"
webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
问题是,我收到一条错误消息 "quotes are not supported for evaluation",这很奇怪,因为我过去曾这样做过。
为什么不绑定?
<iframe [src]="getVideoLinkByTitle(video.title)"></iframe>