我无法说服 Node.js 从我的 URL 中查看第二个参数:
http://localhost:8888/cities?tag=123&date=2013-03-30T10:00:28.000%2B02:00
我使用以下命令启动 Node.js 服务器:
node --debug ./router_rest.js
我的“router_rest.js”文件中有以下代码:
require("http").createServer(function (req, res) {
// For PUT/POST methods, wait until the
// complete request body has been read.
if (req.method==="POST" || req.method==="PUT") {
var body = "";
req.on("data", function(data){
body += data;
})
req.on("end", function(){
return routeCall(req, res, body);
})
} else {
return routeCall(req, res, "");
}
}).listen(8888);
我从命令行进行以下调用:
curl http://localhost:8888/cities?tag=123&date=2013-03-30T10:00:28.000%2B02:00
当我调试并检查 'req' 参数(在上面的匿名函数中)时,url 属性显示为:
/cities?tag=123
我期待报告的网址是:
/cities?tag=123&date=2013-03-30T10:00:28.000%2B02:00
即使我切换参数,节点仍然只能看到第一个。
为什么最后一个参数(即日期)被截断了?