1

当我转到 时new_heuristic_variant_cycle_path,我的应用程序显示循环的新视图,但表单上的提交按钮显示“更新循环”而不是“创建循环”,当您单击提交按钮时,控制器会寻找更新操作。为什么?

我有...

/config/routes.rb:

Testivate::Application.routes.draw do
  resources :heuristics do
    resources :variants do
      resources :cycles
    end
  end
end

/app/models/heuristics.rb:

class Heuristic < ActiveRecord::Base
  has_many :variants
  has_many :cycles, :through => :variants
end

/app/models/variants.rb:

class Variant < ActiveRecord::Base
  belongs_to :heuristic
  has_many :cycles
end

/app/models/cycles.rb:

class Cycle < ActiveRecord::Base
  belongs_to :variant
end

/app/views/cycles/new.html.haml:

%h1 New Cycle
= render 'form'

/app/views/cycles/_form.html.haml:

= simple_form_for [@heuristic, @variant, @cycle] do |f|
  = f.button :submit

/app/controllers/cycles_controller.rb:

class CyclesController < ApplicationController
  def new
    @heuristic = Heuristic.find(params[:heuristic_id])
    @variant = @heuristic.variants.find(params[:variant_id])
    @cycle = @variant.cycles.create
    respond_to do |format|
      format.html # new.html.erb
    end
  end
  def create
    @heuristic = Heuristic.find(params[:heuristic_id])
    @variant = @heuristic.variants.find(params[:variant_id])
    @cycle = @variant.cycles.create(params[:cycle])
    respond_to do |format|
      if @cycle.save
        format.html { redirect_to heuristic_variant_cycles_path(@heuristic, @variant, @cycle), notice: 'Cycle was successfully created.' }
      else
        format.html { render action: "new" }
      end
    end
  end
end
4

1 回答 1

2

在您的控制器中,这行代码是错误的:

@cycle = @variant.cycles.create

应该是这样的:

@cycle = @variant.cycles.build

当您调用create时,记录被保存。在文档中:

集合.build(属性= {},...)

返回集合类型的一个或多个新对象,这些对象已使用属性实例化并通过外键链接到此对象,但尚未保存。

集合.创建(属性 = {})

返回已使用属性实例化的集合类型的新对象,通过外键链接到此对象,并且已经保存(如果它通过了验证)。注意:这仅适用于数据库中已经存在基本模型的情况,而不是新的(未保存的)记录!

于 2012-11-28T10:13:39.567 回答