2

尝试呈现 json 数据时,我的控制器中出现以下错误。

Poison.EncodeError at GET /api
unable to encode value: {nil, "paths"}

web/controllers/api_controller.ex:1 App.ApiController.action/2

在四处搜索后,我尝试了这样的模型:

defmodule App.Api do
  use App.Web, :model

  @derive {Poison.Encoder, only: [:basePath, :definitions, :paths]}
  schema "apis" do
    field :basePath, :string
    field :definitions, :string
    has_many :paths, App.Path

    timestamps()
  end
end

这似乎无法解决错误。尝试在控制器中预加载路径字段后出现此错误,如下所示:

defmodule App.ApiController do
  use App.Web, :controller

  alias App.Api

  def index(conn, _params) do
    apis = Repo.all(Api) |> Repo.preload(:paths)
    render conn, "index.json", apis: apis
  end
end

我能够将数据查找插入到我的数据库中,并且可以通过以下方式查询所有内容:

Repo.all(Api) |> Repo.preload(:paths)

有什么想法可以尝试吗?谢谢

4

1 回答 1

1

如果你想预加载你的:paths,你也应该使用deriveonDocumentr2.Path模块。

@derive [Poison.Encoder]

或者

@derive {Poison.Encoder, only: [:field_you_want]}
于 2017-08-24T05:01:29.330 回答