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_steroids 插件正常工作。在我看来,tag_cloud 方法可以正确创建和格式化云,但是标签是按“count desc”的顺序列出的。
如何按字母顺序在云中显示我的标签?
这是我在我的网站上按名称对标签进行排序的操作:
<% tag_cloud Post.tag_counts.sort { |x, y| x.name <=> y.name }, %w(x-small small normal large x-large) do |tag, css_class| %> <%= link_to tag.name, tag_url( :tag => tag.name ), :class => css_class %> <% end %>