ecto jsonb数组和地图强制转换问题

时间:2019-04-08 18:47:52

标签: postgresql elixir ecto jsonb

我想使用jsonb存储数据,它可以是数组或映射。源数据以数组或映射的形式到达,我们希望在服务器上统一它,以便前端可以使用一种类型。有没有一种方法/解决方法,我可以使用,存储和检索对jsonb postgres类型有效的json / map和数组类型?

如果在source:中得到一个数组,在调用强制转换管道之前,我曾尝试使用sourced复制到数组类型params字段:

condition: Map.has_key?(params, "value") && is_list(value)

我能够成功保存数据,但是从数据库中检索时出现强制错误

field(:value, :map)
field(:value_array, {:array, :integer}, source: :value)

注意:Ecto版本> 3和postgres 10

1 个答案:

答案 0 :(得分:0)

解决方案是定义custom ecto types,它将接受并加载数组和映射

defmodule HaiData.Jsonb do
  @behaviour Ecto.Type
  def type, do: :map

  # Provide custom casting rules.
  def cast(data) when is_list(data) or is_map(data) do
    {:ok, data}
  end


  # Everything else is a failure though
  def cast(_), do: :error

  # When loading data from the database, we are guaranteed to
  # receive a map or list
  def load(data) when is_list(data) or is_map(data) do
    {:ok, data}
  end

  # When dumping data to the database, we *expect* a map or list
  # so we need to guard against them.
  def dump(data)  when is_list(data) or is_map(data), do: {:ok, data}
  def dump(_), do: :error
end

贷方转到idiot - an elixirforum user