黑马面面后端服务接口
黑马面面前端项目地址:https://github.com/lipengzhou/hmmm-frontend
项目运行
# 下载仓库源码
git clone https://github.com/lipengzhou/hmmm-backend.git
#----------------------------------------------
# 使用数据库管理软件创建一个名为 hmmm 的数据库
# 在 hmmm 数据库中执行项目中 hmmm/db/mianmian.sql 文件
# 在 hmmm/config/config.default.js 文件中配置 mysql 数据库连接信息
# 执行完成继续下面的操作
#----------------------------------------------
# 进入项目目录
cd hmmm-backend
# 安装依赖
npm install
# 启动开发服务
npm run dev
调试
调试配置 launch.json
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "调试",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "npm",
"windows": {"runtimeExecutable": "npm.cmd"},
"runtimeArgs": ["run", "debug"],
"console": "integratedTerminal",
"protocol": "auto",
"restart": true,
"timeout": 20000,
"port": 9999
}
]
}
NPM命令
- 开发运行
npm i
npm run dev
open http://localhost:7001/
- 部署运行
npm start
npm stop
- 其它
- Use
npm run lint
to check code style. - Use
npm test
to run unit test. - Use
npm run autod
to auto detect dependencies upgrade, see autod for more detail.
- Use
组件
控制器参数检查
查询字符串合并
var sql = "SELECT * FROM ?? WHERE ?? = ?";
var inserts = ['users', 'id', userId];
sql = this.app.mysql.format(sql, inserts);
sha256
npm install -S sha.js
reqBody.password = shajs('sha256').update(reqBody.password).digest('hex')
数据库
中间件
authorization
令牌检查 - 配置文件
config/config.default.js
config.middleware = [
'authorization'
]
config.authorization = {
whiteList: [
'/base/frame/login'
],
tokenHeaderKey: 'Authorization',
authorizationPre: 'VEA-ADMIN'
}
error_handler
全局错误处理 - 配置文件
config/config.default.js
config.middleware = [
'errorHandler'
]
config.errorHandler = {
}