在 erb 模板中,我访问了(item.attributes[:Post])
一个哈希元素。
我通过打印验证了它的类
<%= (item.attributes[:Post]).class %> => Hash
我可以在上面调用通用方法
<%= (item.attributes[:Post]).methods %> => works as expected
但我无法访问任何哈希特定功能。
<%= (item.attributes[:Post]).count %> => NoMethodError: undefined method `count' for nil:NilClass
你知道为什么吗?