【问题标题】:Getting an error with custom validation in a Rails 3 ActiveModel在 Rails 3 ActiveModel 中自定义验证出错
【发布时间】:2011-05-30 21:33:58
【问题描述】:

我正在尝试使用Date Validator Gem,但我遇到了一个错误,我不确定是不是因为模型不是 Active Record(我见过有人建议验证有点不在 ActiveRecord 中时 ActiveModel 中的时髦)。

我正在使用 Ruby 1.9.2 和 Rails 3.0.7。我已经附上了下面的课程和错误。

提前感谢您的帮助!

require 'ice_cube'
require 'active_support'
require 'active_support/time_with_zone'
require 'ostruct'
require 'tzinfo'
require 'active_model'
include ActiveModel::Validations
include ActiveModel::Conversion
extend ActiveModel::Naming
class Schedule
  attr_accessor :yaml, :repeat, :interval, :interval_unit, :start_time, :start_date, :end_date, :end_time, :ends, :on, :after, :monday, :tuesday, :wednesday, :thursday, :friday, :saturday, :sunday
  validates_presence_of :repeat, :start_date, :start_time, :end_date, :end_time, :ends
  validates_presence_of :interval, :interval_unit, :if => :ends_never? 
  validates_presence_of :on, :if => :ends_on_date?
  validates_numericality_of :after, :greater_than => 0, :if => :ends_after_recurrences? 
  validates :start_date, :date => { :after => Time.now }
  validates :end_date, :date => { :after => :start_date }
  validates :on, :date => { :after => :end_date } 

  def initialize(attributes = {})
  end

  def persisted?
    false
  end

  private
  def parse_schedule
    if :repeat == 0
      get_repeatable
    end

  end
  def parse_yaml
  end

  def ends_on_date?
    return :ends == "on"
  end
  def ends_never?
    return :ends == "never"
  end
  def ends_after_recurrences?
    return :ends == "after"
  end
end

Rails 控制台出错

ruby-1.9.2-p180 :001 > s = Schedule.new
NoMethodError: undefined method `new' for DateValidator:Module
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activemodel-3.0.7/lib/active_model/validations/with.rb:70:in `block in validates_with'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activemodel-3.0.7/lib/active_model/validations/with.rb:69:in `each'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activemodel-3.0.7/lib/active_model/validations/with.rb:69:in `validates_with'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activemodel-3.0.7/lib/active_model/validations/validates.rb:90:in `block in validates'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activemodel-3.0.7/lib/active_model/validations/validates.rb:83:in `each'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activemodel-3.0.7/lib/active_model/validations/validates.rb:83:in `validates'
    from /Users/chance/Sites/EatingNow/app/models/schedule.rb:16:in `<class:Schedule>'
    from /Users/chance/Sites/EatingNow/app/models/schedule.rb:10:in `<top (required)>'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:454:in `load'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:454:in `block in load_file'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:596:in `new_constants_in'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:453:in `load_file'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:340:in `require_or_load'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:491:in `load_missing_constant'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:183:in `block in const_missing'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:181:in `each'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/activesupport-3.0.7/lib/active_support/dependencies.rb:181:in `const_missing'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/rspec-core-2.5.1/lib/rspec/core/backward_compatibility.rb:20:in `const_missing'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/rspec-expectations-2.5.0/lib/rspec/expectations/backward_compatibility.rb:6:in `const_missing'
    from (irb):1
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/commands/console.rb:44:in `start'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/commands/console.rb:8:in `start'
    from /Users/chance/.rvm/gems/ruby-1.9.2-p180/gems/railties-3.0.7/lib/rails/commands.rb:23:in `<top (required)>'
    from script/rails:6:in `require'
    from script/rails:6:in `<main>'

【问题讨论】:

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


    【解决方案1】:

    您已包含/扩展了顶级命名空间。确保包含/扩展在类中。

    class Schedule
    
      include ActiveModel::Validations
      include ActiveModel::Conversion
      extend ActiveModel::Naming
    

    【讨论】:

    • 啊哈,谢谢!来自 java/c# 我想我的大脑完全忽略了我所遵循的示例并将它们抛到了课堂之上。我觉得自己有点像个白痴,但真的很感谢帮助的人,谢谢!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-08-30
    • 1970-01-01
    • 2014-04-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多