标签: ruby ruby-on-rails-3 actionview actionviewhelper
我试图将作为哈希
c.each_key{ |f| humanize(f.to_s)}
但由于某种原因,我得到一个像这样的错误
ActionView::Template::Error (undefined method 'humanize' for #<#<Class:0xb5b77a4>:0xb5b6598>)
知道这里出了什么问题吗?
答案 0 :(得分:25)
试试这种方式。
c.each_key{ |f| f.to_s.humanize}