gpt4 book ai didi

ruby-on-rails - Rails 验证包含错误 'not included in list'

转载 作者:数据小太阳 更新时间:2023-10-29 07:14:17 25 4
gpt4 key购买 nike

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

我在 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 都存在,所以我必须在 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 和一些字段的名称,以免违反我公司的保密协议(protocol)。

问候,苏尔普

最佳答案

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

关于ruby-on-rails - Rails 验证包含错误 'not included in list',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26265480/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com