0

我有一个用户模型和一个配置文件模型。在用户.rb

has_one :profile

并在轮廓模型中

belongs_to :user

现在我试图在profiles#create中为当前用户创建一个配置文件

@profile = current_user.profile.new(params[:profile])

它会引发未知方法“新”错误。如何解决这个问题?请帮忙?

4

1 回答 1

1

@profile = current_user.build_profile(params[:profile])
@profile.save!

于 2013-08-29T07:05:25.143 回答