Rails 验证包含错误"未包含在列表中"



大家好,我看到了几个与我类似的问题,但似乎没有一个解决方案能解决我的问题,所以在尝试了一天半之后,我决定碰碰运气发布我的问题。

我有一个表,在MySQL数据库中有这个模型:

class Client< ActiveRecord::Base
  validates :name, :length => {:maximum => 255}, :presence => true
  validates :client_status, inclusion: { in: 0..2, :presence => true }
  validates :client_type, inclusion: { in: 0..2, :presence => true}
end

因此,我希望client_status和client_type只能是0到2之间的数值,下面是我为适应这一点而编写的rspec:

describe Client do
  before do
    @client = Client.new
  end
  it "should allow name that is less than 255 characters" do
    long_char = 'a' *254
    @client.name = long_char
    @client.client_status = 0
    @client.client_type = 1
    @client.should be_valid
  end
end

这是一个非常简单的测试,我对client_status和client_type都有presence true,所以我必须在RSPEC中添加它们,但是运行这个RSPEC会给我以下错误消息:

got errors: Value type is not included in the list, Status is not included in the list

我试过这个,看看输出是什么:

puts "client type is: #{@client.client_type} and status is: #{@client.client_status} ."

我收到了这个输出:

client type is: false and status is:  .

感谢你阅读这篇长文,我真的希望有人能为我阐明这个问题

注意:我已经更改了模型/rspec和一些字段的名称,这样我就不会违反我公司的保密协议。

谨致问候,Surep

  1. 在rails中,您需要用逗号分隔验证器:
验证:client_status,presence:true,inclusion:{in:0..2}
  1. 如果你检查包容性,那么检查存在性是没有意义的。因此,您可以通过简单的验证来简化代码:
验证:client_status,inclusion:{in:0..2}

我认为应该像这样使用numericality:

validates :client_status, numericality: { only_integer: true, :greater_than_or_equal_to => 0, :less_than_or_equal_to => 2 }, :presence => true

相关内容

  • 没有找到相关文章

最新更新