value_to_boolean deprecated; what's a good replacement?

前端 未结 4 1550
醉话见心
醉话见心 2021-02-01 03:59

Is there a \"cool-kid-approved\" replacement for ActiveRecord::ConnectionAdapters::Column.value_to_boolean in rails 3.2?

4条回答
  •  -上瘾入骨i
    2021-02-01 04:42

    ActiveRecord::Type::Boolean.new.type_cast_from_database(value) return nil if the value is nil/empty('').

    ActiveRecord::Type::Boolean.new.type_cast_from_database(nil) # => nil ActiveRecord::Type::Boolean.new.type_cast_from_database('') # => nil

    I would prefer !! with ActiveRecord::Type::Boolean.new.type_cast_from_database(value) for converting input value to boolean

    !!ActiveRecord::Type::Boolean.new.type_cast_from_database(nil) # => false !!ActiveRecord::Type::Boolean.new.type_cast_from_database('') # => false

提交回复
热议问题