-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
58 lines (49 loc) · 1.69 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//导入 express
const express = require('express')
//创建服务器的实例对象
const app = express()
//导入 joi 验证规则包
const joi = require('joi')
//导入并配置 cors 中间件
const cors = require('cors')
app.use(cors())
//配置解析表单数据的中间件,注意这个中间件,只能解析 application/x-www-form-urlencoded 格式的表单数据
app.use(express.urlencoded({ extended: false }))
//一定要在路由之前,封装 res.cc 函数
app.use((req, res, next) => {
//status 默认值为 1,表示失败的情况
//err的值,可能是一个错误对线,也可能是一个错误的描述字符串
res.cc = function (err, status = 1) {
res.send({
status,
message: err instanceof Error ? err.message : err
})
}
next()
})
//一定要在路由之前配置解析 Token 的中间件
const expressJWT = require('express-jwt')
const config = require('./config')
app.use(expressJWT({ secret: config.jwtSecretKey }).unless({ path: [/^\/api/] }))
//导入并使用用户路由模块
const userRouter = require('./router/user')
app.use('/api', userRouter)
//导入并使用用户信息的路由模块
const userinfoRouter = require('./router/userinfo')
app.use('/my', userinfoRouter)
//定义错误级别的中间件
app.use((err, req, res, next) => {
//验证失败导致的错误
if (err instanceof joi.ValidationError) {
return res.cc(err)
}
//身份认证失败后的错误
if (err.name === 'UnauthorizedError') {
return res.cc('身份认证失败!')
}
//未知的错误
res.cc(err)
})
app.listen(3007, () => {
console.log('api server running at http://127.0.0.1:3007');
})