sendFile
用于发送文件,它还会从文件中找出一些有趣的标题(如内容长度)。对于HEAD
请求,我理想情况下需要完全相同的标题,但只是跳过正文。
API中似乎没有这方面的选项。也许我可以覆盖响应对象中的某些内容以阻止它发送任何内容?
这是我得到的:
res.sendFile(file, { headers: hdrs, lastModified: false, etag: false })
有没有人解决过这个问题?
答案 0 :(得分:1)
Express使用send
来实施已exactly what you want的sendFile
。
答案 1 :(得分:1)
正如Robert Klep已经写过的那样,sendFile
已经具有发送标题所需的行为,如果请求方法是HEAD则不发送正文。
除此之外,Express已经处理了定义了GET处理程序的路由的HEAD请求。所以你甚至不需要显式定义任何HEAD处理程序。
示例:
let app = require('express')();
let file = __filename;
let hdrs = {'X-Custom-Header': '123'};
app.get('/file', (req, res) => {
res.sendFile(file, { headers: hdrs, lastModified: false, etag: false });
});
app.listen(3322, () => console.log('Listening on 3322'));
这可以在GET /file
上发送自己的源代码,如下所示:
$ curl -v -X GET localhost:3322/file
* Hostname was NOT found in DNS cache
* Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 3322 (#0)
> GET /file HTTP/1.1
> User-Agent: curl/7.35.0
> Host: localhost:3322
> Accept: */*
>
< HTTP/1.1 200 OK
< X-Powered-By: Express
< X-Custom-Header: 123
< Accept-Ranges: bytes
< Cache-Control: public, max-age=0
< Content-Type: application/javascript
< Content-Length: 267
< Date: Tue, 11 Apr 2017 10:45:36 GMT
< Connection: keep-alive
<
[...]
[...]
是此处未包含的正文。
在不添加任何新处理程序的情况下,这也可以起作用:
$ curl -v -X HEAD localhost:3322/file
* Hostname was NOT found in DNS cache
* Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 3322 (#0)
> HEAD /file HTTP/1.1
> User-Agent: curl/7.35.0
> Host: localhost:3322
> Accept: */*
>
< HTTP/1.1 200 OK
< X-Powered-By: Express
< X-Custom-Header: 123
< Accept-Ranges: bytes
< Cache-Control: public, max-age=0
< Content-Type: application/javascript
< Content-Length: 267
< Date: Tue, 11 Apr 2017 10:46:29 GMT
< Connection: keep-alive
<
这是相同的,但没有身体。