您可以使用 --middlewares 选项从命令行界面(CLI)添加您的中间件。
// hello.js
module.exports = (req, res, next) => {
res.header('X-Hello', 'World')
next()
}
然后你可以使用此文件作为 json-server 的中间件选项 --middlewares 的值,启动方式类似于下方:
$ json-server db.json --middlewares path/to/hello.js
$ json-server db.json --middlewares ./first.js ./second.js