class Foo
include HTTParty
end
# Simple post with full url and setting the body
Foo.post('http://foo.com/resources', body: {bar: 'baz'})
怎么 post 这种 Json Array 的参数
[
{"name":"test1","display_name":"test1","numeric":0},
{"name":"test2","display_name":"test2","numeric":0},
{"name":"test3","display_name":"test3","numeric":0}
]