我可以在我的JSON中嵌入youtube嵌入代码,一旦使用JSON的内容,是否要显示视频?
[{
"title": "New World Sound & Thomas Newson - Flute (Original Mix)",
"embed": "<iframe width="
560 " height="
315 " src="
https: //www.youtube.com/embed/e-U1lj57pv8" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>"
}]
答案 0 :(得分:1)
由于JSON适用于数据,因此最好像
那样构建数据{
"name": "Beautiful cats",
"keywords": ["cats", "cat", "beautiful", "funny"],
"contentUrl": "https://www.youtube.com/embed/e-U1lj57pv8"
}
当客户端阅读时,它可以选择在iframe
内显示contentUrl。
考虑不仅在浏览器场景中使用JSON:那么iframe将毫无用处。