作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,根据 Ecto 文档中的示例,我有以下内容:
defmodule Post do
use Ecto.Schema
schema "posts" do
many_to_many :tags, Tag, join_through: "posts_tags"
end
end
和
defmodule Tag do
use Ecto.Schema
schema "tags" do
many_to_many :posts, Post, join_through: "posts_tags"
end
end
现在有哪些不同的方法:
a) 将现有帖子与现有标签相关联。
b) 取消现有帖子与标签的关联。
请注意,我不希望创建嵌套资源,而是我有一个 %Post{}
和一个 tag_id
,我希望创建或破坏它们之间的关联。
最佳答案
我可以想到两种不需要为帖子加载所有标签的方法:
为连接表创建一个模块,例如PostTag
然后通过创建/删除 PostTag
行关联/取消关联:
# web/models/post_tag.ex
defmodule PostTag do
use Ecto.Schema
@primary_key false
schema "posts_tags" do
belongs_to :post, Post
belongs_to :tag, Tag
end
end
# Create association
Repo.insert!(%PostTag(post_id: 1, tag_id: 2))
# Remove association
Repo.get_by(PostTag, post_id: 1, tag_id: 2) |> Repo.delete!
直接在posts_tags
表上使用Repo.insert_all/2
和Repo.delete_all/2
:
# Create assoication
Repo.insert_all "posts_tags", [%{post_id: 1, tag_id: 2}]
# Delete association
Repo.delete_all "posts_tags", [%{post_id: 1, tag_id: 2}]
关于elixir - 如何在多对多关联中添加和删除关系?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39375860/
我是一名优秀的程序员,十分优秀!