我对rails很陌生,所以这可能是一个愚蠢的问题,但我想知道我为保存具有许多关系的对象而采取的方法是否正确。
例如:以一个包含主题、帖子和用户的基本论坛应用为例。该主题有一个用户、一个论坛和许多帖子。如果用户通过表单提交标题和消息,这是在所有表中保存数据的最有效方法,还是有更简单的方法?
# init new topic object with forum & user relationships
@topic = Topic.new(
:title => params[:topic][:title],
:forum_id => params[:topic][:forum_id],
:user_id => current_user.id
)
if @topic.save
# init new post object with topic & user relationships
@post = Post.new(
:content => params[:post][:content],
:topic_id => @topic.id,
:user_id => current_user.id
)
if @post.save
# update user's post count and last post info
@user = User.find(current_user.id)
@user.update_attributes(
:post_count => @user.post_count + 1,
:last_post_at => Time.now,
:last_post_id => @post.id
)
# update the forum stats and last post info
@forum = Forum.find(@topic.forum_id)
@forum.update_attributes (
:topic_count => @forum.topic_count + 1
:last_post_id => @forum.recent_post.nil? ? 0 : @forum.recent_post.id
)
# redirect user back to the topic
redirect_to topic_path(@topic.id)
end
有更好的约定还是差不多?