2013-08-29 63 views
0

我有一個用戶模型和配置文件模型。在user.rb如何爲特定用戶添加新配置文件?

has_one :profile 

和剖面模型

belongs_to :user 

,當現在我想在配置文件中創建爲當前用戶配置文件#創建

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

它拋出一個未知的方法'新'錯誤。 如何解決這個問題?請幫忙?

回答

1

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

相關問題