次のコードで「NoMethodError in ProjectsController#create」を取得しています。
def create
@project = current_user.project.build(params[:project])
if @project.save
flash[:success] = "Project created!"
redirect_to root_url
end
end
私も使用@project = current_user.project.create(params[:project])
してみましたが、.create
.
私のプロジェクトモデルは次のようになります。
class Project < ActiveRecord::Base
attr_accessible :title,
:sub_title,
:desc,
:category
validates :user_id, presence: true
validates :title, presence: true, length: { maximum: 35 }
validates :category, presence: true
belongs_to :user
...
end
私の User モデルは次のようになります。
class User < ActiveRecord::Base
attr_accessible :name,
:surname,
:email,
:email_confirmation,
:password,
:password_confirmation
has_secure_password
has_one :project
...
end
私が知る限り、これは と への関連付けを持つ新しいプロジェクトを作成するはずuser.id
ですproject.user_id
。作成が成功する代わりにエラーが発生する理由はありますか?