web-dev-qa-db-ja.com

Mongoid Rails 4 ascまたはdescの順序でソートcreated_at

Mongoidを使用するRails 4アプリ。 :

def index
  @books = Book.order_by(:created_at.desc)
end

これは機能していません。動作していない次の2つも試しました。

@books = Book.find :all, :order => "created_at DESC"

Book.find(:all, :order => "created_at DESC").each do |item|
  @books << item
end

ビューには次のようなものがあります:

<% @books.each do |b| %>
  ...
<% end %>

ありがとうございました。

35
Chleo

これを試すことができます

def index
  @books = Book.order_by(created_at: :desc)
end

正常に動作します。

54
Shahzad Tariq
def index
   @books = Book.order(:created_at => 'desc')
end

私のために、order_byの代わりにorder(by Rails version)に依存

4
Pbms

「order」と「order_by」の両方を使用できますが、これらは同等です。これらはすべて同等です。

Book.order_by(created_at: :desc)
Book.order_by(created_at: -1)
Book.order(created_at: :desc)
Book.order(created_at: -1)

これは、mongoid 5.1.3 "lib/mongoid/criteria/queryable/optional.rb"のソースコードです。

# Adds sorting criterion to the options.
#
# @example Add sorting options via a hash with integer directions.
#   optional.order_by(name: 1, dob: -1)
#
# @example Add sorting options via a hash with symbol directions.
#   optional.order_by(name: :asc, dob: :desc)
#
# @example Add sorting options via a hash with string directions.
#   optional.order_by(name: "asc", dob: "desc")
#
# @example Add sorting options via an array with integer directions.
#   optional.order_by([[ name, 1 ], [ dob, -1 ]])
#
# @example Add sorting options via an array with symbol directions.
#   optional.order_by([[ name, :asc ], [ dob, :desc ]])
#
# @example Add sorting options via an array with string directions.
#   optional.order_by([[ name, "asc" ], [ dob, "desc" ]])
#
# @example Add sorting options with keys.
#   optional.order_by(:name.asc, :dob.desc)
#
# @example Add sorting options via a string.
#   optional.order_by("name ASC, dob DESC")
#
# @param [ Array, Hash, String ] spec The sorting specification.
#
# @return [ Optional ] The cloned optional.
#
# @since 1.0.0
def order_by(*spec)
  option(spec) do |options, query|
    spec.compact.each do |criterion|
      criterion.__sort_option__.each_pair do |field, direction|
        add_sort_option(options, field, direction)
      end
      query.pipeline.Push("$sort" => options[:sort]) if aggregating?
    end
  end
end
alias :order :order_by
2
liukgg

Book.where(author: "Stephen King")。sort({"created_at":1})->昇順

Book.where(author: "Stephen King")。sort({"created_at":-1})->降順

2
Vinu Joseph