当我使用respond_with
并传递一个文字哈希时,它给了我错误:
syntax error, unexpected tASSOC, expecting '}'
`respond_with {:status => "Not found"}`
但是,当我将文字哈希括在括号中时,如下所示:
respond_with({:status => "Not found"})
该功能运行顺利。为什么括号有区别?哈希不是封闭的调用吗?
调用方法时,直接在方法名称之后的左大括号被解释为块的开始。这优先于作为哈希的解释。规避该问题的一种方法是使用括号将解释强制为方法参数。例如,请注意这两个方法调用的含义不同:
# interpreted as a block
[:a, :b, :c].each { |x| puts x }
# interpreted as a hash
{:a => :b}.merge({:c => :d})
另一种方法是去掉大括号,因为你总是可以跳过方法最后一个参数的括号。Ruby 足够“聪明”,可以将参数列表末尾看起来像关联列表的所有内容解释为单个哈希。请看一下这个例子:
def foo(a, b)
puts a.inspect
puts b.inspect
end
foo "hello", :this => "is", :a => "hash"
# prints this:
# "hello"
# {:this=>"is", :a=>"hash"}