5

这是我运行 db:migrate 时遇到的错误

rake aborted!
can't cast Array to json

这是我的桌子

  class CreateTrips < ActiveRecord::Migration

          def change
            create_table :trips do |t|

              t.json :flights
              t.timestamps
            end
          end 
        end

这是在我的seeds.rb 文件中

flights = [{
    depart_time_hour: 600,
    arrive_time_hour: 700,

    passengers: [
        {
            user_id: 1,
            request: true    
        }
    ]
}]

trip = Trip.create(
  {
    name: 'Flight',

    flights: flights.to_json 
  }
)

由于某种原因,我不能这样做。如果我这样做。

trip = Trip.create(
      {
        name: 'Flight',
        flights: { flights: flights.to_json }
      }
    )

有用。我不想要这个,因为现在我必须使用trip.flights.flights 访问json 数组。不是我想要的行为。

4

1 回答 1

7

执行摘要:这是一个已知问题,并在此pull request中得到解决,在撰写本文时该请求正在等待合并。

长版:

好吧,我可以看到它基于 Array/Hash 失败/成功的原因和方式。这是进行类型转换的 Rails 方法(来自 quoting.rb),它显然不支持从 RubyArray转换为 Postgres json,但支持从Hash. flights另外,我在这个方法的开头放了一些调试代码,发现使用or作为值并不重要flights.to_json,因为后者为了这个转换而转换为前者。我将进行更多挖掘,因为flights.to_json使用 psql 将值插入 json 列没有问题。

    def type_cast(value, column, array_member = false)
      return super(value, column) unless column

      case value
      when Range
        return super(value, column) unless /range$/ =~ column.sql_type
        PostgreSQLColumn.range_to_string(value)
      when NilClass
        if column.array && array_member
          'NULL'
        elsif column.array
          value
        else
          super(value, column)
        end
      when Array
        case column.sql_type
        when 'point' then PostgreSQLColumn.point_to_string(value)
        else
          return super(value, column) unless column.array
          PostgreSQLColumn.array_to_string(value, column, self)
        end
      when String
        return super(value, column) unless 'bytea' == column.sql_type
        { :value => value, :format => 1 }
      when Hash
        case column.sql_type
        when 'hstore' then PostgreSQLColumn.hstore_to_string(value)
        when 'json' then PostgreSQLColumn.json_to_string(value)
        else super(value, column)
        end
      when IPAddr
        return super(value, column) unless ['inet','cidr'].include? column.sql_type
        PostgreSQLColumn.cidr_to_string(value)
      else
        super(value, column)
      end
    end

我继续在Array案例中添加了以下行:

        when 'json' then PostgreSQLColumn.json_to_string(value)

然后更改PostgreSQLColumn.json_to_string(在 cast.rb 中)以对参数ArrayHash类型进行操作,我能够让您的用例通过。

目前我还没有检查是否有任何问题或拉取请求

顺便说一句,我假设您知道您可以通过使用text字段而不是字段来解决此问题jsonjson我知道的唯一为您提供的是数据库级别的验证。如果您认为这很重要,我很想知道为什么,因为我正在开发的网络应用程序中有一些带有 json 内容的文本字段,我想知道转换它们的好处(如果有的话) .

于 2013-07-01T21:17:44.937 回答