如何让acts_as_list让添加的item置顶?

How to make acts_as_list make the added item have the top position?

我有一组使用 acts_as_list gem 的项目。截至目前,当添加新项目时,acts_as_list 会将项目置于最低位置,使其显示为列表中的最后一项。有没有办法让 acts_as_list 给新添加的项目一个位置编号,使其显示在第一个而不是最后一个?我不想翻转其他项目的位置。谢谢!

列表中的新条目 by default 添加到底部。您可以指定 add_new_at 选项以在顶部添加新条目:

acts_as_list scope: :object, add_new_at: :top

希望对您有所帮助!