我是rails begginer。Ruby on Rails - 通過has_many關係的字段排序對象
如何加載具有以下條件的數據庫。
我想表明,comment.created_at DESC
schema.rb
create_table "comments", force: :cascade do |t|
t.text "content"
t.integer "user_id"
t.integer "lecture_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "likedcount", default: 0
end
create_table "lectures", force: :cascade do |t|
t.string "subject"
t.string "professor"
t.string "major"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "uptachi", default: 0
t.integer "hatachi", default: 0
end
lecture.rb
has_many :comments
comment.rb
belongs_to: lectures
問題的標題根本不明確,那麼「按has_many關係的字段排序對象」怎麼樣(並且確實有更好的可能性,但一切都比「rails howto」更好) 。 – Felix
謝謝!我編輯 –