0

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

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

任何帮助表示赞赏!

4

0 回答 0