对于Rails,有一个优秀的acts_as_list gem,它允许定义由position
整数字段排序的has-many关联。是否有类似的Ecto和Phoenix库,或者Ecto是否实现了类似的东西?
答案 0 :(得分:6)
看起来有一个小的Ecto扩展程序可以提供帮助:https://github.com/zovafit/ecto-ordered
虽然(至少是订购部分)这可以通过单独使用一些Ecto基础来轻松完成:
网络/模型/ invoice.ex 强>
defmodule MyApp.Invoice do
use MyApp.Web, :model
schema "invoices" do
has_many :line_items, MyApp.LineItem
timestamps
end
# ...
end
网络/模型/ line_item.ex 强>
defmodule MyApp.LineItem do
use MyApp.Web, :model
schema "line_items" do
belongs_to :invoice, MyApp.Invoice
field :position, :integer
timestamps
end
def positioned do
from l in __MODULE__,
order_by: [asc: l.position]
end
# ...
end
然后您可以像这样查询已定位的项目:
Repo.all(MyApp.LineItem.positioned)
或者像这样预加载它们:
Repo.get(MyApp.Invoice, id) |> Repo.preload(line_items: MyApp.LineItem.positioned)
您可以在此处阅读有关将范围或条件纳入Ecto.Schema.has_many/3
的一些背景信息:https://github.com/elixir-lang/ecto/issues/659