我在Express服务器上使用这样的摩根:
const morgan = require('morgan');
app.use(morgan('dev'));
在我的日志中,我通常会看到类似的内容:
GET /?prompt_ids={%22foo%22:%22bar%22} 200 122.495 ms - -
我的问题是 - 有没有办法使用morgan记录查询字符串,其中字符不会被转义?
看起来像这样:
GET /?prompt_ids={"foo":"bar"} 200 122.495 ms - -
答案 0 :(得分:1)
基本上你想将JavaScript函数decodeURI()
应用于morgan记录的url。
您可以使用这个小改动来定义自定义日志记录布局,例如'dev'。
为了简化您的工作,我们可以了解'dev'布局的详细信息 直接from the docs。
因此,只需使用:
,而不是app.use(morgan('dev'))
morgan(function (tokens, req, res) {
return [
tokens.method(req, res),
decodeURI(tokens.url(req, res)), // I changed this from the doc example, which is the 'dev' config.
tokens.status(req, res),
tokens.res(req, res, 'content-length'), '-',
tokens['response-time'](req, res), 'ms'
].join(' ')
})
编辑:如果效果不佳,则可以使用decodeURIComponent()
代替decodeURI()
,问题如下:NodeJS Express encodes the URL - how to decode