nodejs 在headers添加内容发送到后端

app.all('*', function(req, res, next){
    req.headers['COOKIE'] = 'Your Cookie'
    next()
})
原文地址:https://www.cnblogs.com/zerohu/p/6052508.html