我是ruby和rails的新手,所以我想问一下关于约定的问题。
我有一个视图,它会在表格中生成一个项目列表,并且我被要求进行更改,并且这样做会在视图中添加一个case语句,我不认为这是正确的做事方式以为我会仔细检查。
我所做的更改只是向tr
添加一个类,具体取决于最后一个表列的值。
list.rhtml
<table width="100%">
<tr>
<th style="width: 80px;">ID #</th>
<th>Organisation</th>
<th>Product</th>
<th>Carrier</th>
<th>Carrier Ref</th>
<th>Post Code</th>
<th>Status</th>
</tr>
<%= render :partial => 'circuit/list_item', :collection => @circuits %>
</table>
list_item.rhtml
<%
# code I have added
@tr_class = ''
case list_item.status
when 'Handover'
@tr_class = ''
when 'Unprocessed'
@tr_class = 'high_priority'
when 'Ceased'
@tr_class = 'low_priority'
else
@tr_class = ''
end
# end of newly added code
%>
<!-- the class part is new aswell -->
<tr class="<%= @tr_class %>">
<td><a href='/circuit/update/<%= list_item.id %>'><%= list_item.id_padded %></a></td>
<td><%= list_item.organisation.name if list_item.has_organisation? %></td>
<td><%= list_item.product_name %></td>
<td><%= list_item.carrier.name %></td>
<td><%= list_item.carrier_reference %></td>
<td><%= list_item.b_end_postcode %></td>
<td><%= list_item.status %></td>
</tr>
是否有Rails模式或约定可以从此视图中获取case语句?
答案 0 :(得分:4)
如果正确理解你的问题,我认为你应该将case
语句放在辅助函数中:
应用/助手/ list_helper.rb 强>
module ListHelper
def tr_class_for_status(status)
case status
when 'Unprocessed'
'high_priority'
when 'Ceased'
'low_priority'
else
''
end
end
end
<强> _list_item.rhtml 强>
<tr class="<%= tr_class_for_status(list_item.status) %>">