1

update以下操作中nested_form有效,但在create我收到此错误时:

Couldn't find Student with ID=12 for Cv with ID=


控制器:

def new
  @cv = Cv.new
  @cv.student = current_student
end

def create
  @cv = Cv.new(params[:cv])

  if @cv.save
    redirect_to student_dashboard_path,
      notice: t('activerecord.successful.messages.created', model: @cv.class.model_name.human)
  else
    render 'new'
  end
end


模型:

class Cv < ActiveRecord::Base
  attr_accessible :student_attributes

  belongs_to :student
  accepts_nested_attributes_for :student
end


看法:

= f.simple_fields_for :student do |s|
  = s.input :english_level, collection: [['Low', 1], ['High', 2]]
4

1 回答 1

1

您也应该对您的 route.rb 进行更改。

resources :parent do
  resources :child
end

看看 Jose Valim -inherited -resources的这个有用的实现。

于 2012-11-17T14:48:33.223 回答