如何在 meteorjs 上用 youtube 发帖



我试图用YouTube视频发帖。每个帖子都有一个关于YouTube视频的链接,就像这样:

{
   title: "Some video",
   link: "http://www.youtube.com/watch?v=XfWnITmT1Ws"
}

模板帖子是

<template name="post">
  <h1>{{title}}</h1>
  <iframe width="420" height="315" 
   src="{{link}}" frameborder="0" allowfullscreen></iframe>
</template>

但它不起作用。错误是

Refused to display 'http://www.youtube.com/watch?v=gpEgXOgRQ8w'
in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.

有人见过吗?我该怎么办?

使用Youtube API显示视频怎么样?您实际上是在尝试使用iframe将Youtube视频集成到视频页面,而youtube提供了嵌入代码:

<iframe width="420" height="315" src="https://www.youtube.com/embed/{{video_id link}}" frameborder="0" allowfullscreen></iframe>

请注意,您必须注册一个模板帮助程序video_id该帮助程序将视频链接作为参数并返回视频 ID(此处以粗体显示:http://www.youtube.com/watch?v=gpEgXOgRQ8w

相关内容

  • 没有找到相关文章

最新更新