RoR - Category Link with Comma Separation


/ Published in: Rails
Save to your folder(s)

For separating a list of categories with a comma that are linked. There may be a better way. Leave a comment if you have a better way. This was the first way I found that worked.

This code increments the count 1 at a time. It applies the increment to the next loop of data.


Copy this code and paste it in your HTML
  1. <% category_count = @post.categories.length %><% count = 1 %>
  2. <% @post.categories.each do |cat| %>
  3. <%= link_to cat.name, cat %><%= ", " unless category_count == count %><% count += 1 %>
  4. <% end %>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.