次のミックス deps を使用:
[{:phoenix, "~> 0.15"},
{:phoenix_ecto, "~> 1.0.0"},
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 2.1"},
{:phoenix_live_reload, "~> 0.5", only: :dev},
{:cowboy, "~> 1.0"}]
そして次のモデル:
# foo.ex
has_many: :bars, App.Bar
# bar.ex
belongs_to: :foo, App.Foo
がデータベースに既に挿入されているbars
場合、プリロードしようとするとエラーが発生します。Foo
Repo.all(Foo) |> Repo.preload(:bars)
利回り :
** (FunctionClauseError) no function clause matching in Postgrex.Extensions.Binary.encode/4
(ecto) lib/ecto/repo/preloader.ex:49: Ecto.Repo.Preloader.do_preload/4
noがまだ挿入されていない場合、エラーは発生しません (単に[]
) 。Foo
Bar
移行:
defmodule App.Repo.Migrations.CreateBar do
use Ecto.Migration
def change do
create table(:bars) do
add :title, :string
add :foo_id
timestamps
end
create index(:bars, [:foo_id])
end
end