如何在Express中设置响应Location
HTTP头?我试过了,但不起作用:
Controller.prototype.create = function(prop, res) {
var inst = new this.model(prop);
inst.save(function(err) {
if (err) {
res.send(500, err);
}
res.location = '/customers/' + inst._id;
res.send(201, null);
});
};
这段代码将一个新文档持久化到MongoDB中,并在竞争时设置位置并发送201
响应。收到此响应,未设置Location
标头:
HTTP/1.1 201 Created
X-Powered-By: Express
Content-Length: 0
Date: Mon, 18 Feb 2013 19:08:41 GMT
Connection: keep-alive
您正在设置res.location
。CCD_ 5是一个函数。
res.location('/customers/' + inst._id)
res
对象公开setHeader()
:
res.setHeader('Location', foo);
试试这个而不是res.location
。
使用以下代码的核心http库的替代方法:
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.setHeader('Location', 'https://discord.gg/mSeCFujqqw');
res.statusCode=301
res.end()
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});