ruby - Net::HTTP::POST 发送参数值为hash数组的方法
问题描述
代码如下(很常见的发送post的方法):
def access_api(path, data)uri = URI(path)http = Net::HTTP.new(uri.host, uri.port)if uri.scheme == ’https’ http.verify_mode = OpenSSL::SSL::VERIFY_NONE http.use_ssl = trueendbegin request = Net::HTTP::Post.new(uri.request_uri) request.set_form_data(data) res = http.request(request) if parsed[’code’] =1 parsed else nil endrescue puts ’communication failed’endend
这个方法发送类似{'name' => 'www.xxx.com', 'type'=>'download'}的参数,没什么问题,但是现在有一个需求参数里有一个数组,数组的元素是map,类似{'ip'=>{'static.xxx.com'=>80,'img.xxx.com'=>23}},这个该怎么搞
问题解答
回答1:可以使用Content-Type: application/json
body 放序列化的JSON
也可以使用to_query方法转成url query string的形式
api: http://api.rubyonrails.org/classes/Object.html#method-i-to_query这是Rails里的方法
{:token=>'6df95c86c2be8f3d44eaa2da04f173ba', :name=>'www.xxxx.com', :type=>'download', :ip=>[{:'static.xxx.com'=>80}, {:'img.xxx.com'=>80}]}
to_json 转成json放body
相关文章:
1. javascript - 呈现引擎是什么?2. mysql sql where id in(25,12,87) 结果集如何用按照 25 12 87排序?3. html5 - 新手提问:为什么form表单的post请求 路由处理不了4. IDEA java出现无效的源发行版14解决方案5. html5 - 移动端通过拖拽实现两个元素的位置互换6. 利用百度地图API定位及附件商家信息服务7. javascript - easyui textbox绑定onchange事件不能获取最新的文本框的值8. PHP类属性声明?9. javascript - 如何在windows下搭建react开发环境上,实现网站的react版本10. 为什么微信内置浏览器用$_COOKIE取不到值?