我嘗試獲取除了那些所有視頻與類別[20,21,22]Rails的where.not跳過一些記錄
這是我的查詢
@cc = Video.joins(:categories).where.not(categories: { id: [20,21,22]})
但是當我做@cc.find(113).categories
我得到這個
#<ActiveRecord::Associations::CollectionProxy
[#<Category id: 21, title: "music">, #<Category id: 22, title: "movies">,
#<Category id: 28, title: "collage">]>
我在做什麼錯?
見我的編輯... – Brozorec