我正在使用
这会获取最受欢迎标签的10个标签
@tags = Post.tag_counts_on(:tags, :limit => 10, :order => "count desc")
这将获取最旧标签的10个标签
@tags = Post.tag_counts_on(:tags, :limit => 10)
如何获取最新标签的10个标签?
答案 0 :(得分:1)
如何通过id排序并获得最新版本?
@tags = Post.tag_counts_on(:tags,:limit => 10,:order =>“id asc”)