如何使用变量创建适当的iframe

时间:2019-01-05 01:48:40

标签: html5 youtube

我正在尝试为YouTube嵌入视频创建标签,其中src来自数据库的可变值

标签如下:

<iframe class="img-fluid w-100" width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PLx0sYbCqOb8TBPRdmBHs5Iftvv9TPboYG" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

并且我正在尝试这样替换它:

<iframe class="img-fluid w-100" width="560" height="315" src="{{frontPageConfig.recentVideos2.linkURL}}"
            frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

但是无论有没有{{variable}},它都无法使用。

谢谢。

1 个答案:

答案 0 :(得分:1)