我已经使用 httparty 发布了一个帖子。
例如
options={
:foo => '123'
:bar => 'second',
:baz => 'last thing'
}
HTTParty.post("localhost/tests" , options)
如何在远程应用控制器中检索选项参数:例如
#post /tests
def create
@k=options[:name] -------> Here is my question, How can I access options[:name]?
我的意思是我应该将选项作为创建方法的参数传递吗?就像是:
def create(options)
@k=options[:name]