0
如何使用導軌3功能清理此問題?我有一個帖子,屬於一個組和一個用戶。該組和用戶has_many帖子。我正在使用嵌套資源Rails 3使用嵌套資源創建方法?
resources :groups do
resources :posts
end
<%= form_for @post, :url => group_posts_path(params[:group_id]) do |f| %>
....
<% end %>
def create
@group = Group.find(1)
@post = @group.posts.build(params[:post])
@post.user_id = current_user.id
respond_to do |format|
if @post.save
.....
end
end
end
謝謝。