根据父属性验证子级

时间:2012-04-23 05:45:58

标签: ruby-on-rails ruby ruby-on-rails-3

class Query < ActiveRecord::Base
  #relations
  has_one :r_job
  accepts_nested_attributes_for :r_job
end

class RJob < ActiveRecord::Base
  belongs_to :query
  validates_presence_of :analysis_type, :if => lambda {|job| job.query.process_r_job} 
end

我有一个用于创建查询和r_job的嵌套表单。我在查询对象中有一个布尔字段,我必须根据查询对象中的布尔值对r_job进行一些验证。我正在尝试使用上面的代码,但是我得到了一个no方法错误。

NoMethodError (undefined method `process_r_job' for nil:NilClass):
   app/models/r_job.rb:3:in `block in <class:RJob>'
   app/controllers/queries_controller.rb:9:in `create'

我挖了一下,我发现,lambda内的job.query正在返回一个零对象。我有点坚持这个。需要一些帮助来解决这个问题。下面是我的表格和控制器代码。

# app/views/queries/new.html.haml
=form_for @query, {:html => {:class=>"form-horizontal"}}do |f|
  - if @query.errors.any?
    .alert.alert-error
      %h4.alert-heading Error(s)!
      - @query.errors.full_messages.each do |msg|
        %p= msg

  =render "query_form", :f => f

  %fieldset
    =f.fields_for :r_job do |builder|
      =render "r_job_form", :f => builder
  %button.btn.btn-primary.small Go

#app/controller/queries_controller.rb
class QueriesController < ApplicationController
  def new
    @query = Query.new
    @query.build_r_job
  end

  def create
    @query = Query.new(params[:query])
    if @query.save
      redirect_to root_path, :notice => "Yay!! Your query is running. You can download the CSV once the query finishes."
    else
      flash.now[:error] = "Oops, the query cannot be saved!!"
      render :new
    end
  end
end

我发现了一个类似的问题。但不知何故,我无法完成这项工作。 get parent values in child model

3 个答案:

答案 0 :(得分:0)

您可以使用:inverse_of执行此操作。它已经解释/回答here

答案 1 :(得分:0)

条件lambda不带参数,并且在实例上下文中运行,所以这应该有效:

:if => lambda { query.process_r_job }

并考虑更短的符号:

if: 'query.process_r_job'

答案 2 :(得分:-2)

请参阅以下链接中提出的相同问题。

Rails accepts_nested_attributes_for child doesn't have parent set when validating

没有一个答案被接受。因为无法完成。