我有两个模型User
和Submission
如下:
class User < ActiveRecord::Base
# Associations
has_many :submissions
accepts_nested_attributes_for :submissions
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :name, :role, :submission_ids, :quotation_ids, :submissions_attributes
validates :email, :presence => {:message => "Please enter a valid email address" }
validates :email, :uniqueness => { :case_sensitive => false }
end
class Submission < ActiveRecord::Base
belongs_to :user
attr_accessible :due_date, :text, :title, :word_count, :work_type, :rush, :user, :notes
validates :work_type, :title, :text,:presence => true
validates :text, :length => { :minimum => 250 }
validates :word_count, :numericality => { :only_integer => true }
end
我有一个表单,用于收集这两个模型所需的数据。用户控制器:
def index
@user = User.new
@user.submissions.build
end
def create
@user = User.where(:email => params[:user][:email]).first_or_create(params[:user])
if @user
redirect_to :root
else
render 'pages/index'
end
end
我想要做的是首先通过提交的电子邮件检查用户是否已经存在于系统中。如果是,那么我想为该用户创建提交。否则,请同时创建用户和提交。
我对如何使用first_or_create
方法感到困惑。
任何帮助表示感谢。
答案 0 :(得分:13)
first_or_create
accepts a block。所以你可以这样做:
@user = User.where(:email => params[:user][:email]).first_or_create do |user|
# This block is called with a new user object with only :email set
# Customize this object to your will
user.attributes = params[:user]
# After this, first_or_create will call user.create, so you don't have to
end
答案 1 :(得分:2)
由于您的用例稍微复杂一些,将其拆分为两个单独的操作可能不会有什么坏处。如果您希望以原子方式进行此操作,可以将其放在transaction。
中User.transaction do
# Create the user if they don't already exist
@user = User.where(:email => params[:user][:email]).first_or_create
# Update with more attributes, and create nested submissions
@user.update_attributes(params[:user])
end
答案 2 :(得分:-3)
嘿,我认为它应该是那样的
@user = User.first_or_create(params[:user])
然后在用户模型中
def first_or_create(params)
unless user = User.where(:email => params[:email]).first # try to find user
user = User.create(email: params[:user])
# it should create also submission because of accepts_nested_attributes_for
else #user exsists so we need to create submission for him
user.submissions.create(params[:submissions])
end
end