因此,我在下面列出了架构及其关联。
用户
has_one avatar
has_many posts
has_many comments
头像
belongs_to user
发布
belongs_to user
has_many comments
评论
belongs_to user
belongs_to post
我的问题是我想加入我的帖子-> 评论-> 用户-> 头像 >在查询中。
def get_post_comments!(id) do
query =
from(
p in Post,
where: p.id == ^id,
select: p,
join: c in assoc(p, :comments),
join: l in assoc(c, :user),
join: d in assoc(l, :avatar),
preload: [comments: {c, user: l, avatar: d}]
)
IO.inspect(Repo.one!(query))end
我遇到
错误预加载中的(Ecto.QueryError)字段
BazaarApp.Market.Comment.avatar
不是查询中的关联:
答案 0 :(得分:0)
修复了笨拙的错误,忘记添加括号。
来自
preload: [comments: {c, user: l, avatar: d}]
收件人
preload: [comments: {c, [user: {l, avatar: d}] }]