在Node.js(使用快递)中,我打电话http://quest/code>。 类似:
var options = {
host: 127.0.0.1 ,
port: 80,
path: / ,
query: {name: "John Doe", age: 50} // <---- problem here
};
http.request(options, function(response) { ... });
除<代码>query部分备选办法被忽略外,所有选择都是好的。 文件指出,必须用人工方式构造查询,并在<条码>/代码>内通过: 比如path: /?name=John%20Doe&age=50/code>。
实现这一目标的最佳途径是什么? <代码>query是一种简单的体质->{string, number}。