0

如何在节点中读取传入的内容长度和内容类型。

我看到了 http://nodejs.org/docs/v0.6.6/api/all.html#request.connection

看起来我错过了一些东西。

如何阅读 Content-length 和 content -type 以及任何其他通用标题?像 X-*

4

1 回答 1

0
req.headers

该字段将填充所有发送的标头。如果要访问 Connection-header,请使用:

req.headers.connection

Content-Length 和 Content-Type 是仅在正文存在时发送的标头,因此它们不会与 GET 请求一起发送。

于 2012-10-28T19:04:10.207 回答