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.
我使用acts-as-taggable-on gem 并想获取 5 个最常用的标签,我该如何获取它们?
我认为您的控制器必须是:
class PostController < ApplicationController def tag_cloud @tags = Post.tag_counts_on(:tags).limit(5).order('count desc') end end