Node.js - 在HTTP GET请求查询中发送时,数组将转换为对象 [英] Node.js - Array is converted to object when sent in HTTP GET request query

查看:439
本文介绍了Node.js - 在HTTP GET请求查询中发送时,数组将转换为对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下Node.js代码:

The following Node.js code:

var request = require('request');

var getLibs = function() {
    var options = { packages: ['example1', 'example2', 'example3'], os: 'linux', pack_type: 'npm' }

    request({url:'http://localhost:3000/package', qs:options}, 
    function (error , response, body) {
        if (! error && response.statusCode == 200) {
            console.log(body);
        } else if (error) {
            console.log(error);
        } else{
            console.log(response.statusCode);
        }
    });
}();

发送如下所示的http GET请求查询:

sends the following http GET request query that is received by like this:

{"packages"=>{"0"=>"example1", "1"=>"example2", "2"=>"example3"}, "os"=>"linux", "pack_type"=>"npm"}

如何优化此请求以便像这样收到:

How can I optimize this request to be received like this:

{"packages"=>["example1", "example2", "example3"], "os"=>"linux", "pack_type"=>"npm"}

注意。 REST API使用Ruby on Rails构建

Note. The REST API is built in Ruby on Rails

推荐答案

我终于找到了一个解决方案。我使用'qs'将{options''字符串化为{arrayFormat:'brackets'},然后concatinated以'?'结尾,如下所示:

I finally found a fix. I used 'qs' to stringify 'options' with {arrayFormat : 'brackets'} and then concatinated to url ended with '?' as follows:

var request = require('request');
var qs1 = require('qs');

var getLibs = function() {
    var options = qs1.stringify({ 
        packages: ['example1', 'example2', 'example3'], 
        os: 'linux', 
        pack_type: 'npm' 
        },{
        arrayFormat : 'brackets'
    });


    request({url:'http://localhost:3000/package?' + options}, 
    function (error , response, body) {
        if (! error && response.statusCode == 200) {
            console.log(body);
        } else if (error) {
            console.log(error);
        } else{
            console.log(response.statusCode);
        }
    });
}();

注意:我试图避免连接到url,但所有的响应都有代码400

Note: I tried to avoid concatenation to url, but all responses had code 400

这篇关于Node.js - 在HTTP GET请求查询中发送时,数组将转换为对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆