我有一个带枚举的模型:
enum pending_users: {
pending_users_disabled: 0,
pending_users_enabled: 1
}
以下是schema.rb中描述的字段:
t.integer "pending_users", limit: 4, default: 0, null: false
当我尝试使用以下参数通过控制器更新它时:
Parameters: {"utf8"=>"✓", "authenticity_token"=>"...", "group"=>{"pending_users"=>"1"}, "commit"=>"Update Group", "id"=>"33"}
我看到以下错误:
ArgumentError - '1' is not a valid pending_users:
activerecord (4.2.7.1) lib/active_record/enum.rb:104:in `block (3 levels) in enum'
activerecord (4.2.7.1) lib/active_record/attribute_assignment.rb:54:in `_assign_attribute'
activerecord (4.2.7.1) lib/active_record/attribute_assignment.rb:41:in `block in assign_attributes'
actionpack (4.2.7.1) lib/action_controller/metal/strong_parameters.rb:185:in `each_pair'
activerecord (4.2.7.1) lib/active_record/attribute_assignment.rb:35:in `assign_attributes'
activerecord (4.2.7.1) lib/active_record/persistence.rb:251:in `block in update'
activerecord (4.2.7.1) lib/active_record/transactions.rb:351:in `block in with_transaction_returning_status'
activerecord (4.2.7.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction'
activerecord (4.2.7.1) lib/active_record/connection_adapters/abstract/transaction.rb:184:in `within_new_transaction'
activerecord (4.2.7.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction'
activerecord (4.2.7.1) lib/active_record/transactions.rb:220:in `transaction'
activerecord (4.2.7.1) lib/active_record/transactions.rb:348:in `with_transaction_returning_status'
activerecord (4.2.7.1) lib/active_record/persistence.rb:250:in `update'
app/controllers/groups_controller.rb:53:in `update'
从我的角度来看,1是枚举的有效值。什么可能导致这种行为?
答案 0 :(得分:11)
您应该使用字符串(键)分配枚举。因此,1
应该是"pending_users_enabled"
。