繁体   English   中英

Node.js - writeHead设置“Location”和“Set-Cookie”

[英]Node.js - writeHead to set both “Location” and “Set-Cookie”

在node.js中(在Connect.js中运行),我可以使用writehead设置ether或者Set-Cookie,但不能同时设置两者。 目前,下面设置了cooke,但URL没有被重定向到新位置:

function foo(req, res, next) {
    var url = /container-templates/;
    if (url.test(req.url)) {
        console.log(url.test(req.url));
        console.log(req.url);
        res.writeHead(302, ["Location", 'https://staging.dx.host.com' + req.url],
                ["Set-Cookie", "fake-token=5b49adaaf7687fa"]);
        res.end();
    } else { next() }
}

在旁注中,我这样做是为了学习体验,并且不想使用任何预先编写的插件。

Response#writeHead期望标头是Object而不是数组参数列表。

Node HTTP文档定义了以下签名:

response.writeHead(statusCode, [reasonPhrase], [headers])

如果您想传入多个标头,则上面的代码应为:

response.writeHead(302, {
    Location: 'https://staging.dx.host.com' + req.url',
    'Set-Cookie': 'fake-token=5b49adaaf7687fa'
});

reasonPhrase上的[]表示它是可选的,并根据参数的类型推断您为函数提供的内容。

此外,您不需要将对象的key部分用引号括起来,除非它包含对变量名无效的字符(如- 。)并且单个'将对所有字符串执行 - 在javascript中没有区别之间的'"

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM