gpt4 book ai didi

node.js - 使用 Express.js Node.js header (cURL) 中的 token

转载 作者:太空宇宙 更新时间:2023-11-03 23:07:42 26 4
gpt4 key购买 nike

所以,我想在我的项目中使用这段代码:

var allowCrossTokenHeader = function(req, res, next) {
res.header("Access-Control-Allow-Headers", "token");
};

但是它不起作用,服务器挂起并且不起作用,如果我评论此代码,服务器将正常工作。我需要检查 RESTful api 的每个请求中的 token ,知道该怎么做吗?

最佳答案

您需要调用 next() 才能继续执行堆栈中的下一个中间件。

var allowCrossTokenHeader = function(req, res, next) {
res.header("Access-Control-Allow-Headers", "token");
next();
};

If the current middleware does not end the request-response cycle, it must call next() to pass control to the next middleware, otherwise the request will be left hanging.

Documentation

关于node.js - 使用 Express.js Node.js header (cURL) 中的 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29210044/

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