我正在尝试显示属于我页面顶部最后一篇文章的图片 使用此代码:
<%= image_tag @postlast.last.image %>
相反,它显示正确的图像,但在每个帖子旁边。
我的索引函数如下所示:
def index
@posts = Post.order("created_at desc")
@postlast = Post.order("created_at DESC").limit(1)
end
以下是完整视图:
<%= image_tag @postlast.last.image %>
<%= div_for(post) do %>
<div class="description">
<%= link_to (post.title), post %>
</div>
<div class="description2">
<%= time_ago_in_words(post.created_at) %> ago
<div class="floatright">
#Questions #Answers
</div>
</div>
<% end %>
感谢任何帮助!