问题:
class MyModel < ActiveRecord::Base
enum status: [:queued, :pending, :processed]
scope :queued_and_pending, -> { where(status: [statuses[:queued], statuses[:pending]]) }
end
MyModel.queued_and_pending.new
# => ArgumentError: '[0, 1]' is not a valid status
现在我知道正确的方法是MyModel.new而不是MyModel.queued_and_pending.new。 但是我的问题是为什么它会引发此错误?显然,我想按自己范围内的多个状态进行过滤。
答案 0 :(得分:0)
但是在最坏的情况下,诸如“ ActiveRecord :: Relation上未定义new”之类的错误
从关系/查询实例化记录非常有用。在这种情况下,您使用的机制与之相同:
@comment = @user.comments.build # comment gets user_id pre-populated
在这种情况下,ActiveRecord正确地找不到找到将查询转换为有效对象状态的方法。尝试仅使用一种状态的示波器,它将起作用。