我用
获取10个最流行的标签
@tags = Post.tag_counts_on(:tags, :limit => 10, :order => "count desc")
获取10个最老的标签
@tags = Post.tag_counts_on(:tags, :limit => 10)
如何获取最新的10个标签?
如何通过id排序并获得最新的?
@tags = Post。tag_counts_on(标签:限制=> 10:订单=> id asc)