json-server 中间件
- 简易模拟登陆中间件实现(这不就是集成了
express
的功能嘛):
module.exports = (req, res, next) => {
if (req.method === 'POST' && req.path === '/login') {
if (req.body.username === 'jira' & req.body.password === '123456') {
return res.status(200).json({
user: {
token: '123'
}
})
} else {
return res.status(400).json({
message: '用户名或密码错误'
})
}
}
next()
}
"json-server": "json-server __json_server_mock__/db.json --watch --port 3010 --middlewares ./__json_server_mock__/middleware.js"
本文标题:json-server 中间件
本文链接:https://www.haomeiwen.com/subject/fitaqrtx.html
网友评论