使用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
会在图像旁边输出。我该如何防止这种情况?