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