gpt4 book ai didi

ruby-on-rails - validates_inclusion_of 在 Rails 4.1 中不再正常工作?

转载 作者:数据小太阳 更新时间:2023-10-29 06:55:32 26 4
gpt4 key购买 nike

以下代码确保选择的 time_zoneActiveSupport::TimeZone.us_zones 中的时区内:

validates_inclusion_of :time_zone, in: ActiveSupport::TimeZone.zones_map(&:name)

在 Rails 4.0 中表现出色。刚刚升级到 Rails 4.1,我的索引页面上出现了这个错误(所以只是简单地查看模型):

An object with the method #include? or a proc, lambda or symbol is required, and must be supplied as the :in (or :within) option of the configuration hash

我由此猜测,ActiveSupport::TimeZone.zones_map(&:name) 不再是 in 属性的有效值?

最佳答案

尝试添加 .keys ?

validates :time_zone, 
inclusion: {
in: ActiveSupport::TimeZone.zones_map.keys
}

关于ruby-on-rails - validates_inclusion_of 在 Rails 4.1 中不再正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22950540/

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