NODE JS- EXPRESS:无法从 POST 和 PUT 请求的 HTTP 上下文中检索值,而它适用于 GET
NODE JS- EXPRESS: Unable to retrieve value from HTTP Context for POST and PUT requests while it works for GET
在 Node.js 和 Express 框架中,我无法从 POST 和 PUT 请求的 HTTP 上下文中检索值,而它适用于 GET。我正在使用 httpContext 设置唯一的 requestId 标识符,以便我可以在记录时使用它来跟踪 API 请求。
我发现 HttpContext 可以被中间件中的一些其他包重置,有没有更好的方法来存储请求范围的数据,可以在所有模块中访问。
app.js 文件
const app = express();
app.use(httpContext.middleware);
//Assign unique identifier to each req
app.use(function (req, res, next) {
let test = uuidv1();
httpContext.set("reqId", test);
next();
});
const PORT = process.env.PORT || 3001;
Connection.setupPool();
app.use(express.json());
app.use(helmet());
if (app.get("env") === "development") {
app.use(morgan("tiny"));
}
//use to access a resource in the root through url
app.use(express.static("resource"));
app.use("/users", userRouter);
//Code For Instagram authentication Using Passport
logger.info("End-Instagram Authentication Configuration");
app.listen(PORT, () => {
logger.info(`app running port ${PORT}`);
});
我从 httpContext 中检索 reqId 的代码
logger.js
message = httpContext.get("reqId") ? "RequestId: " +
httpContext.get("reqId")+" "+ message: ""+ message ;
我希望这个解决方案可以解决您的问题,并为遇到此问题的任何人节省很多时间
你可以直接使用bindEmitter来解决问题
app.use((req, res, next) => {
httpContext.ns.bindEmitter(req);
httpContext.ns.bindEmitter(res);
var requestId = req.headers["x-request-id"] || uuidv4();
httpContext.set("requestId", requestId);
console.log('request Id set is: ', httpContext.get('requestId'));
next();
});
我遇到了同样的问题。尝试了上面的 bindEmitter 解决方案,但没有成功。
经过一些尝试和错误 REF#1 从我的客户 POST 中删除 'Content-Type': 'application/json'
header 调用允许上下文中的值为 set/retained.
这让我怀疑 body-parser(v1.19.0)
中间件和 express-http-context(v1.2.3)
的交互方式存在问题。
当我颠倒中间件的顺序时,body-parser
出现在 express-http-context
之前 httpContext 按预期工作(无需执行 REF#1 )例如:
app.use(bodyParser.json()); //must come before
app.use(httpContext.middleware);
在 Node.js 和 Express 框架中,我无法从 POST 和 PUT 请求的 HTTP 上下文中检索值,而它适用于 GET。我正在使用 httpContext 设置唯一的 requestId 标识符,以便我可以在记录时使用它来跟踪 API 请求。
我发现 HttpContext 可以被中间件中的一些其他包重置,有没有更好的方法来存储请求范围的数据,可以在所有模块中访问。
app.js 文件
const app = express();
app.use(httpContext.middleware);
//Assign unique identifier to each req
app.use(function (req, res, next) {
let test = uuidv1();
httpContext.set("reqId", test);
next();
});
const PORT = process.env.PORT || 3001;
Connection.setupPool();
app.use(express.json());
app.use(helmet());
if (app.get("env") === "development") {
app.use(morgan("tiny"));
}
//use to access a resource in the root through url
app.use(express.static("resource"));
app.use("/users", userRouter);
//Code For Instagram authentication Using Passport
logger.info("End-Instagram Authentication Configuration");
app.listen(PORT, () => {
logger.info(`app running port ${PORT}`);
});
我从 httpContext 中检索 reqId 的代码
logger.js
message = httpContext.get("reqId") ? "RequestId: " +
httpContext.get("reqId")+" "+ message: ""+ message ;
我希望这个解决方案可以解决您的问题,并为遇到此问题的任何人节省很多时间
你可以直接使用bindEmitter来解决问题
app.use((req, res, next) => {
httpContext.ns.bindEmitter(req);
httpContext.ns.bindEmitter(res);
var requestId = req.headers["x-request-id"] || uuidv4();
httpContext.set("requestId", requestId);
console.log('request Id set is: ', httpContext.get('requestId'));
next();
});
我遇到了同样的问题。尝试了上面的 bindEmitter 解决方案,但没有成功。
经过一些尝试和错误 REF#1 从我的客户 POST 中删除 'Content-Type': 'application/json'
header 调用允许上下文中的值为 set/retained.
这让我怀疑 body-parser(v1.19.0)
中间件和 express-http-context(v1.2.3)
的交互方式存在问题。
当我颠倒中间件的顺序时,body-parser
出现在 express-http-context
之前 httpContext 按预期工作(无需执行 REF#1 )例如:
app.use(bodyParser.json()); //must come before
app.use(httpContext.middleware);