1

我使用acts-as-taggable-on gem 并想获取 5 个最常用的标签,我该如何获取它们?

4

1 回答 1

4

我认为您的控制器必须是:

class PostController < ApplicationController
    def tag_cloud
        @tags = Post.tag_counts_on(:tags).limit(5).order('count desc')
    end
end
于 2012-04-26T22:55:11.820 回答