我正在尝试将一组参数传递给定义为这样的rails函数......
def test(*params)
stuff
end
如果我通过以下
test :mark, :was, :here
或者
test :mark, :was, :here=>:today
一切安好。但是,当我这样做时...
test :mark, :was=>:really, :here
抛出一个错误。任何线索我要去哪里错?
M。
我正在尝试将一组参数传递给定义为这样的rails函数......
def test(*params)
stuff
end
如果我通过以下
test :mark, :was, :here
或者
test :mark, :was, :here=>:today
一切安好。但是,当我这样做时...
test :mark, :was=>:really, :here
抛出一个错误。任何线索我要去哪里错?
M。