即使使用Repo.preload()预加载后,我仍然得到Ecto.Association.NotLoaded。我有一个具有has_many:books的商店架构,当我尝试添加创建商店时,出现此错误:
%App.Stores.Store{__meta__: #Ecto.Schema.Metadata<:loaded, "stores">,
name: "mystore", description: "book store", id: 13, inserted_at:
N[2018-10-10 16:52:24.155385], name: "mystore", books:
#Ecto.Association.NotLoaded<association :books is not loaded>,
updated_at: ~N[2018-10-10 16:52:24.155397]}
我进行了研究,发现我的:books关联未加载,因此我将其添加到了商店上下文中
def list_stores do
Repo.all(Store)
Repo.preload(:books)
end
但仍然出现相同的错误。
请这是我的模式
schema "stores" do
field :description, :string
field :name, :string
has_many :books, Myapp.Books.Book
field :owner, :string
timestamps()
end
@doc false
def changeset(store, attrs) do
market
|> cast(attrs, [:name, :description, :owner])
|> validate_required([:name, :owner ])
end
和
schema "books" do
field :title, :string
field :author, :string
belongs_to :store_id, Myapp.Stores.Store
timestamps()
end
@doc false
def changeset(pair, attrs) do
pair
|> cast(attrs, [:name, :description])
|> validate_required([:name, :description])
end
最后是我的迁移文件
def change do
create table(:books) do
add :title, :string
add :name, :string
add :store_id, references(:stores, on_delete: :nothing)
timestamps()
end
create index(:books, [:store_id])
end
end
拜托,我不明白,我是elixir的新手,并且已经研究了其他解决方案,因为预加载无法正常工作。似乎我在代码中的某个地方搞砸了,请问我在哪里弄错了?
谢谢。
答案 0 :(得分:0)
我终于弄明白了,那是我的StoreView。我从架构中删除了store.title,并且仍在视图中调用它。我现在可以添加新书和商店。真不敢相信这件小事让我久了,谢谢大家的贡献。非常感谢!
非常感谢您。