返回列表会给(Poison.EncodeError)无法编码值

时间:2015-10-22 13:07:54

标签: elixir phoenix-framework ecto

IO.puts(inspect(contacts))给出:

 [%HelloTable.Contact{__meta__: #Ecto.Schema.Metadata<:loaded>, 
 id: 37,   
 inserted_at: #Ecto.DateTime<2015-10-22T12:50:43Z>, 
 name: "Gumbo", phone: "(801) 555-55555", 
 updated_at: #Ecto.DateTime<2015-10-22T12:50:43Z>}]

视图如下:

defmodule HelloTable.ContactView do
  use HelloTable.Web, :view

  def render("index.json", %{contacts: contacts}) do
    IO.puts(inspect( contacts ))
    contacts
  end

end

当我尝试渲染此视图时,我得到:

** (Poison.EncodeError) unable to encode value: {nil, "contacts"}

2 个答案:

答案 0 :(得分:5)

您需要按Encoding a Ecto Model to JSON in elixir中所述为Poison.Encoder实施HelloTable.Contact协议,或使用render_many/4从渲染函数返回地图:

defmodule HelloTable.ContactView do
  use HelloTable.Web, :view

  def render("index.json", %{contacts: contacts}) do
    render_many(contacts, __MODULE__, "contact.json")
  end

  def render("contact.json", %{contact: contact}) do
    %{
      id: contact.id,
      name: contact.name,
      phone_number: contact.phone
    }
  end    
end

以上是Phoenix JSON generators中如何处理JSON。

答案 1 :(得分:0)

this response to a similar question中描述了使用更高版本毒药的另一种可能更清洁的解决方案。

将此行代码添加到您的模型中:

@derive {Poison.Encoder, only: [:name, :phone]}

(如果您希望JSON中包含该字段,还可以包括:updated_at)