我是 Rails 新手,我使用 rails count 来计算我的工作和非工作资产并将它们存储在变量中。计数按资产类型分组。当我尝试在我的索引页上打印计数时,它会以原始格式打印计数。我需要以正确的格式打印它。这是我的控制器的代码-
@instock_working_type=EquipmentAsset.count(:conditions=>"oos=0 and location='In Stock'", :group=>"asset_type")
@instock_non_working_type=EquipmentAsset.count(:conditions=>"oos=1 and location='In Stock'", :group=>"asset_type")
现在我必须在我使用过的索引页上打印@instock_working_type 和@instock_non_working_type
<td><b>working Devices Type wise</td>
<td><%=h @instock_working_type %></td>
<td><b>Non working Devices Type wise</td>
<td><%=h @instock_non_working_type %></td>
但是我在浏览器上得到的输出类似于 -
{"MVT600"=>1} {"MVT380"=>1, "MVT600"=>2}
我想要正确的格式, 例如- MVT380 =1 MVT600 =2
请帮助我。