部分带有Rails中的图像标记

时间:2016-05-13 04:18:31

标签: ruby-on-rails content-for

使用content_for时,我无法将图片信息发送到部分内容。

这是我的代码:

home.html.erb
<% content_for :imageName do %>
  <%= image_tag "profile_alexpic.jpg",
      :class => "img-circle pull-xs-left",
      :width => "100",
      :height => "100" %>
<% end %>

<%= render 'layouts/jumbo' %>
_jumbo.html.erb
<%= content_for(:imageName) %>

所有内容都完全呈现我想要的内容,但文本profile_alexpic.jpg会在图像旁边输出。我该如何防止这种情况?

0 个答案:

没有答案