当前位置:  开发笔记 > 编程语言 > 正文

Mongoid使用默认顺序embeds_many

如何解决《Mongoid使用默认顺序embeds_many》经验,为你挑选了1个好方法。

如何将默认顺序设置为嵌入对象,例如:

class Post
  embeds_many :comments, :order => "author"
  accepts_nested_attributes_for
end

现在我直接通过订单来处理它:

f.fields_for :comments, @post.comments.asc(:author) do |comment|
  ...
end

luishurtado.. 7

在mongoid 3.1.2中,您可以执行以下操作:

embeds_many :favorites, order: :title.desc

它也适用 :title.asc



1> luishurtado..:

在mongoid 3.1.2中,您可以执行以下操作:

embeds_many :favorites, order: :title.desc

它也适用 :title.asc

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有