Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 a 添加limit到此范围?
limit
scope :with_comments, include: {comments: :user}
我这样使用它:
Event.with_comments.find(params[:id])
scope :with_comments, include(comments: :user).limit(5)
default_scope includes(:comments :user).limit(5)
将其添加到默认范围
Event.find(params[:id])