我需要将youtube视频嵌入我的Rails应用程序中。为此,我在Gemfile中添加了宝石“ youtube-g ”。
安装给定的捆绑软件之后。解析Gemfile
时出错:Gemfile的未定义局部变量或方法'youtube'。捆绑器无法继续。
帮我找出问题所在
答案 0 :(得分:0)
我认为youtube-g已过时,因为我检查了gem的最新更新是2009 from this link,要嵌入youtube视频的另一步骤是在您的视图中插入以下代码,然后更改我标记为your_youtube_code的代码取决于您的逻辑
<iframe src='https://www.youtube.com/embed/<%= your_youtube_code %>?rel=0&autoplay=<%= params[:autoplay] || 0 %>' frameborder='0' mozallowfullscreen webkitallowfullscreen oallowfullscreen msallowfullscreen width="1280" height="720"></iframe>