【发布时间】:2011-08-21 04:31:11
【问题描述】:
我很抱歉我的英语不好。我只是尝试描述我的问题。 :) 我有一个应用程序布局,可以在正文中显示帖子。我还有另一个收益 :footerpost3 用于在页脚上显示最近帖子的标题。
当我在 localhost:3000 时,yield :footerpost3 正确显示最近的标题。但是当我点击一个帖子链接时,即 url 是 localhost:3000/posts/3,yield :footerpost3 什么也不显示。
这是我的代码: app/views/layout/application.html.erb
<!-- begin footer comment widget -->
<div class="footer_list widget_recent_comments">
<div class="title"><h5>Artikel Terkini</h5></div>
<%= yield :footerpost3 %>
</div>
<!-- end footer comment widget -->
app/views/store/index.html.erb
<% content_for :footerpost3 do %>
<% @postsMain.each do |dopostAll| %>
<div class="entry">
<ul>
<li class="recentcomments"><%= link_to dopostAll.title, dopostAll %></li>
</ul>
</div>
<% end %>
<% end %>
我希望我的问题很容易理解.. :)
【问题讨论】: