Node.js connect.bodyParser在GET请求上抛出400

时间:2012-11-23 13:05:33

标签: node.js node.js-connect

我编写了一个node.js代理服务器(github上的here

问题是connect.bodyParser不能很好地工作。 对于这个问题,我已经编写了自己的bodyParser(参见文件'server'),但现在我再次使用connect.bodyParser进行测试。简而言之,我现在有类似的东西:

app.use(connect.bodyParser()) 
    .use(connect.query())
    .use(serveFromDB)
    .use(actAsProxyServer)
    .use(cacheContent)
    .use(function(err, req, res, next) {
        console.log("ERROR: " + JSON.stringify(err)) ;
        console.log("URL=" + req.url) ;
        console.dir(req.headers) ;
        res.setHeader('Content-Type', 'application/json');
        res.end(JSON.stringify(err));
}) ;

这是错误函数的输出:

ERROR: {"status":400}
URL=/Client/rest/cache/Clients/user123/X7X1

{ host: 'localhost:8000',
  connection: 'keep-alive',
  'x-requested-with': 'XMLHttpRequest',
  'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11',
  'content-type': 'application/json; charset=utf-8',
  accept: 'application/json, text/javascript, */*; q=0.01',
  referer: 'http://localhost:8000/Client/index.jsp?cache=true',
  'accept-encoding': 'gzip,deflate,sdch',
  'accept-language': 'en-US,en;q=0.8',
  'accept-charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
  cookie: 'JSESSIONID=d1cbd411e30bcfb759e29585ee23' }

这个GET请求唯一要做的就是调用该url(没有任何参数)

为什么 bodyParser 会对此GET请求引发错误的任何建议?

干杯

更新:我找到了bodyParser here的代码。在json.js中,它最终会抛出错误,因为它试图将一个空字符串(因为没有正文)转换为json。我虽然bodyParser仅用于POST请求!!

UPDATE1:发现问题:https://github.com/documentcloud/backbone/pull/267我认为我的GET请求中有内容类型

1 个答案:

答案 0 :(得分:1)