显示最后的帖子图片

时间:2013-09-20 23:25:14

标签: ruby-on-rails

我正在尝试显示属于我页面顶部最后一篇文章的图片 使用此代码:

<%= 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 %>

感谢任何帮助!

0 个答案:

没有答案