您好我一直关注Rails教程书,创建用户和帖子以及显示帖子的Feed。但是,作者从未使用嵌套资源,这似乎在rails中非常重要,我想了解如何自己使用它们。但是,当我根据Ruby on rails指南嵌套post资源时,它随后会破坏我的所有表单和路径。
我不想重新开始,而是希望转换到嵌套资源,并在此过程中准确了解差异是什么。任何人都可以帮我解决这个问题吗?谢谢你的帮助。
特别是我对如何处理饲料感到困惑。目前,feed_item调用旧的post_path。
<tr>
<td class="avatar">
<%= link_to avatar_for(feed_item.user), feed_item.user %>
</td>
<td class="post">
<span class="title"><%= link_to feed_item.title, feed_item %></span><br />
<span class="content">the plot: <%= feed_item.content %></span><br />
<span class="timestamp">
Posted <%= time_ago_in_words(feed_item.created_at) %> ago.
</span>
</td>
</td>
<% if current_user?(feed_item.user) %>
<td>
<%= link_to "delete", feed_item, :method => :delete,
:confirm => "You sure?",
:title => feed_item.content %>
</td>
<% end %>
</tr>
class Micropost < ActiveRecord::Base
.
.
.
default_scope :order => 'microposts.created_at DESC'
# Return microposts from the users being followed by the given user.
scope :from_users_followed_by, lambda { |user| followed_by(user) }
private
# Return an SQL condition for users followed by the given user.
# We include the user's own id as well.
def self.followed_by(user)
followed_ids = %(SELECT followed_id FROM relationships
WHERE follower_id = :user_id)
where("user_id IN (#{followed_ids}) OR user_id = :user_id",
{ :user_id => user })
end
end
这是从本章的第11.3.3节http://ruby.railstutorial.org/chapters/user-microposts#top开始的,并为本章12.3中的实时构建http://ruby.railstutorial.org/chapters/following-users#top
答案 0 :(得分:3)
以下是一些可以帮助您入门的链接:
railscasts.com/episodes/139-nested-resources
railscasts.com/episodes/196-nested-model-form-part-1
railscasts.com/episodes/197-nested-model-form-part-2