gpt4 book ai didi

elixir - 具有 has_many 关系的 Phoenix 模型不会更新 w/o 预加载关系

转载 作者:行者123 更新时间:2023-12-04 18:54:53 24 4
gpt4 key购买 nike

我正在开发一个 Phoenix 应用程序,它是 Evernote 的个人版本。我有一个 Book 模型,它有 has_many Note 记录。

这是我的书模型:

defmodule Notebook.Book do
use Notebook.Web, :model

schema "books" do
field :name, :string, default: ""
has_many :notes, Notebook.Note
belongs_to :user, Notebook.User
timestamps()
end

@doc """
Book changeset. Name field required.
"""
def changeset(model, params \\ %{}) do
model
|> cast(params, [:name])
|> validate_required(:name)
end
end

我的 Controller 中有一个更新端点:

def update(conn, %{"id" => id, "book" => book_params}) do
existing_book = Repo.get(Book, id)
changeset = Book.changeset(existing_book, book_params)

case Repo.insert(changeset) do
{:ok, book} ->
conn
|> put_status(:ok)
|> render("show.json", book: book)

{:error, changeset} ->
conn
|> put_status(:unprocessable_entity)
|> render("error.json", message: changeset.errors)
end
end

还有一个测试:

test "with a valid jwt", %{conn: conn, jwt: jwt} do
book = insert(:book)
resp = conn
|> put_req_header("authorization", "Bearer: #{jwt}")
|> put(book_path(Endpoint, :update, book, book: %{name: "New Book"}))
|> json_response(:ok)

assert resp["data"]["book"]["name"] == "New Book"
end

当我运行我的测试时,我得到这个错误:

** (RuntimeError) attempting to cast or change association `notes`   from `Notebook.Book` that was not loaded. Please preload your associations before manipulating them through changesets

我发送的参数只有name。对此,我发现了一个 related issue , 但由于我没有使用 cast_assoc 我认为它不适用。

我不知道我做错了什么。我理解(我认为)关于 Ecto 中的预加载关系,但在这种情况下,我没有更新相关的 Note 记录,只是 Book 记录的一个字段,所以我不需要预加载。

整个仓库是 here .

最佳答案

看起来您在 BookControllerupdate 方法中使用了 Repo.insert。将其更改为 Repo.update 应该可以解决它。

关于elixir - 具有 has_many 关系的 Phoenix 模型不会更新 w/o 预加载关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42128823/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com