gpt4 book ai didi

javascript - node.js 在 res.writeHeads() 函数中使用变量

转载 作者:太空宇宙 更新时间:2023-11-04 01:13:41 25 4
gpt4 key购买 nike

嘿嘿,外面。我遇到以下问题:

我用的是这个

res.writeHead(200, {
"Content-Length": template["stylecss"].length,
"Connection": "Close",
"X-XSS-Protection": "1; mode=block",
"Server": servername,
"Content-Type": "text/css"
});

将响应 header 写入客户端。

但是现在,我想更改上面的代码以提供预定义的 header 。像这样的事情:

var defresheads = { "X-Frame-Options": "deny", "X-Powered-By": 服务器名 };

res.writeHead(200, {
defresheads,
"Content-Length": template["stylecss"].length,
"Connection": "Close",
"X-XSS-Protection": "1; mode=block",
"Server": servername,
"Content-Type": "text/css"
});

现在,当我运行脚本时,它会显示以下内容:

/home/dontrm/dontrm.js:47
defresheads,
^
SyntaxError: Unexpected token ,

还有其他方法可以做到这一点吗?

最佳答案

使用辅助函数来连接 header 对象,例如

function jsonConcat(o1, o2) {
for (var key in o2) {
o1[key] = o2[key];
}
return o1;
}

然后您可以按如下方式使用它:

var defresheads = { "X-Frame-Options": "deny", "X-Powered-By": servername };
res.writeHead(200, jsonConcat(defresheads, {
"Content-Length": template["stylecss"].length,
"Connection": "Close",
"X-XSS-Protection": "1; mode=block",
"Server": servername,
"Content-Type": "text/css"
}));

关于javascript - node.js 在 res.writeHeads() 函数中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13430782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com