Encoding a Ecto Model to JSON in elixir

烂漫一生 提交于 2019-11-27 11:31:59

问题


I am going over the following tutorial in an attempt to get my head around elixir and phoenix:

https://thoughtbot.com/blog/testing-a-phoenix-elixir-json-api

I am running into an issue with the test, mainly using Poison.encode! on the Contact model. I get the following error:

unable to encode value: {nil, "contacts"}

This led me to the following issue:

https://github.com/elixir-lang/ecto/issues/840 and the fix: https://coderwall.com/p/fhsehq/fix-encoding-issue-with-ecto-and-poison

I have added the code from the blog article into lib/poison_encoder.ex, but I now get the following error:

no function clause matching in Poison.Encoder.Any.encode/2

The code I have in lib/poison_encoder.ex:

defimpl Poison.Encoder, for: Any do
  def encode(%{__struct__: _} = struct, options) do
    map = struct
          |> Map.from_struct
          |> sanitize_map
    Poison.Encoder.Map.encode(map, options)
  end

  defp sanitize_map(map) do
    Map.drop(map, [:__meta__, :__struct__])
  end
end

回答1:


Update to Poison 1.5. With it you can declare in your models:

@derive {Poison.Encoder, only: [:foo, :bar, :baz]}
schema "your schema" do
  field :foo
  field :bar
  field :baz
end

It is going to be faster, safer and cleaner.



来源:https://stackoverflow.com/questions/32549712/encoding-a-ecto-model-to-json-in-elixir

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!