我遇到了一个问题,其中通过我的 NodeJS HTTP 服务器发送带有 204 - NO CONTENT 状态代码的响应会导致响应无限期挂起,从而使发起请求超时。
response.statusCode = 204;
response.write(preparedBody);
response.end();
即使preparedBody
只是空字符串,错误仍然会发生。
我如何得到响应出去?
我遇到了一个问题,其中通过我的 NodeJS HTTP 服务器发送带有 204 - NO CONTENT 状态代码的响应会导致响应无限期挂起,从而使发起请求超时。
response.statusCode = 204;
response.write(preparedBody);
response.end();
即使preparedBody
只是空字符串,错误仍然会发生。
我如何得到响应出去?