我有一个哈希:
hsh = {"http://localhost:3000/sales?"=>[], "am"=>["Room Service", "Coffee Shop", "Business Center"]}
我还有另一个变量,因为c.value 包含“客房服务”
现在我想检查Room Service
哈希中是否存在值,我使用了它,但它显示错误。
if hsh.any? {|x| x[:am] == "#{c.value}" }
错误:
can't convert Symbol into Integer.
如何解决?