【发布时间】:2012-05-25 12:25:11
【问题描述】:
我可以使用下面的来获取查询字符串。
var query_string = request.query;
我需要的是未解析的原始查询字符串。我怎么得到它?对于下面的 url,查询字符串是{ tt: 'gg' },我需要tt=gg&hh=jj 等......
http://127.0.0.1:8065?tt=gg
Server running at http://127.0.0.1:8065
{ tt: 'gg' }
【问题讨论】: