2016-04-04 36 views

回答

0

也許你可以:

  • 使用的數據屬性(例如<div data-images-per-row="<%= @images_per_row %>"></div>並通過JavaScript訪問它

然而,這並沒有「感覺」的權利我也許您正在尋找的東西像in_groups_of

<table> 
<% @tasks.in_groups_of(4, false) do |row_tasks| %> 
    <tr> 
    <% for task in row_tasks %> 
     <td><%= image_tag task.image %></td> 
    <% end %> 
    </tr> 
<% end %> 
</table>