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]?
createメソッドの引数としてオプションを渡す必要がありますか?何かのようなもの:
def create(options)
@k=options[:name]