nodejs使用express框架,给每次http请求添加traceId

在Express中,中间件是一个函数,它可以访问请求对象(req)、响应对象(res)和应用程序中的下一个中间件函数(next)。可以使用uuid模块生成唯一标识符(traceid)。

const express = require('express');
const uuid = require('uuid');

const app = express();

// 添加中间件函数
app.use((req, res, next) => {
  req.traceid = uuid.v4(); // 生成唯一标识符(traceid)
  next(); // 调用下一个中间件函数
});

// 添加路由
app.get('/', (req, res) => {
  res.send(`Hello, your traceid is ${req.traceid}`); // 返回带有唯一标识符(traceid)的响应
});

// 启动服务器
app.listen(3000, () => {
  console.log('Server started on port 3000');
});

你可能感兴趣的:(node,express,http,node.js)