orderを使うと、データベースから取得した複数のレコードを並び替えることができます。
今回はツイートの投稿日が新しいものが上に来るようにします。
#使い方
.order("カラム名 順序")
順序は、ASC(昇順)とDESC(降順)があります。
#使用例
tweets_controller
def index
@tweet = Tweet.all.order("created_at DESC")
end
allですべて取得し、それを投稿日の降順で並び替えます。
また、allは省略できます。
tweets_controller
def index
@tweet = Tweet.order("created_at DESC")
end
ではまた!