在Bootstrap Link中使用Rails video_tag

时间:2015-01-23 21:56:49

标签: ruby-on-rails twitter-bootstrap

我对rails和编码一般都很陌生,但我想在我的视图中写一些内容,如果有一个与提案有关的视频,那么应该向该视频显示一个链接(在你身上)管)。如果没有视频,则会显示确认没有视频的通知。我的架构中有一个关于video_proposal的布尔值,如果是真的,那么我想显示视频的链接。

我认为我没有正确地将引导程序与轨道相结合。我不确定问题是否是我在按钮中引用video_tag的方式。

我做了以下事情:

<% if @project.video_proposal %>
             <button type="button" <%= video_tag "@project.link_to_video_proposal" %> class="btn btn-link"> More about the project </button>

            <% else %>
              <p>No video recorded</p> 
            <% end %>

有没有人知道如何以这种方式使用video_tag?谢谢

2 个答案:

答案 0 :(得分:0)

<% if @project.video_proposal %>
   <%= video_tag @project.link_to_video_proposal %>More about the project
<% else %>
   <p>No video recorded</p> 
<% end %>

答案 1 :(得分:0)

Bootstrap's responsive embed element ...

复制粘贴
<div class="embed-responsive embed-responsive-4by3">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

你的.link_to_video_proposal是一个字符串吗?如果是这样,你有没有理由......?

<div class="embed-responsive embed-responsive-4by3">
  <iframe class="embed-responsive-item" src="<%= @project.link_to_video_proposal %>"></iframe>
</div>