我正在编写简单的应用程序,并在服务器端使用noodejs
框架connect
。
现在在我的一个中间件中,我有这样的东西:
response.writeHead(302,{'Location': "/",'Content-Type': 'text/plain'});
response.end();
现在我观察到状态代码和响应标头没有正确设置,但是当我添加时
response.statusCode = 302;
response.setHeader('Location', "/");
response.end();
用我的旧 oneliner 安装writeHead
一切似乎工作正常。
我是在滥用writeHead
功能还是在我的节点版本(v0.10.15)中损坏了?