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