警告我是全新的rails! 在閱讀教程的過程中,它要求我將帶有十進制值的字符串鍵的哈希值放入產品操作方法中(我假設他們正在談論控制器中的「def產品」使用助手從控制器返回視圖到視圖
在使用控制器中的產品方法是否正確地放置了我的哈希值? 將哈希中的信息放入表格中,我甚至需要幫助方法還是有更好的方法? 我的幫助程序需要幫助並且不會格式化數據正確使用.html_safe我
這是我到目前爲止在我CONTROLER:
def products
#hard coded as products in controller
@stuff = {"a"=>200.00, "b"=>150.00, "c"=>100.00, "d"=>9.00, "e"=>15.00, "f"=>20.00 }
end
這是我在我的product.html.erb文件
<%= form_tag(products_path) do %>
<table id="aboutus_table">
<%= products_tabler() %>
</table>
<% end %>
,然後助手...它需要幫助
def products_tabler
snowholder = @snow_stuff.each {|key,value|puts "<tr><td>#{key}</td><td>#{value}</td><tr>"}
return snowholder
end