我正在使用Ruby on Rails創建一個博客應用程序。我能夠允許用戶添加帖子,但是在頁面的頂部,首先創建的帖子首先出現。我希望最近的博客文章首先出現。我該怎麼做呢?讓我知道我需要在這裏添加哪些代碼文件。 我的文章控制器 class ArticlesController < ApplicationController
def new
@article = Article.n
我想創建一個範圍方法,只查詢最近更新的記錄(或其相關模型最近已更新)。我相信生成的SQL語句看起來不錯,但是當應該有一些時,我沒有看到任何結果。謝謝你的幫助! 控制器 class Api::V1::EncountersController < ApplicationController
respond_to :json
def index
if params.has
我只是想知道在我調用sort_by total_like方法之後,通過在自定義方法欄中降序來執行偏移限制和排序。 這是我的模型自定義方法 class Post < ApplicationRecord
def total_like
self.likeposts.count
end
... more code ...
,這是劇本時,我按降序嘗試那種通過調用後total_like i