Vue3.0开发之——API接口案例(08)
一 概述
- 案例需求
- 项目结构及准备
- API 接口案例
二 案例需求
2.1 案例需求
基于 MySQL 数据库 + Express 对外提供用户列表的 API 接口服务。用到的技术点如下
- 第三方包 express 和 mysql2
- ES6 模块化
- Promise
- async/await
2.2 主要的实现步骤
- 搭建项目的基本结构
- 创建基本的服务器
- 创建 db 数据库操作模块
- 创建 user_ctrl 业务模块
- 创建 user_router 路由模块
2.3 第三方包介绍
express
应用介绍:Express 是一个保持最小规模的灵活的 Node.js Web 应用程序开发框架
安装依赖:
1 | npm install express --save |
mysql2
应用介绍:适用于Node.js的MySQL客户端,专注于性能优化
安装依赖:
1 | npm install --save mysql2 |
nodemon
应用介绍:
是一个大约300万个项目都依赖的工具,它可以监视源码中的任意改动并自动重启服务
安装依赖:
1 | npm install -g nodemon |
三 项目结构及准备
3.1 MySql数据库
MySql数据库表格及内容
数据库连接信息
1 | 用户名:root |
3.2 搭建项目的基本结构
1-执行如下指令,生成package.json
1 | npm init -y |
2-启用ES6模块化支持
1 | 在 package.json 中声明 "type": "module" |
3-安装第三方依赖包
1 | npm install express mysql2 |
四 API 接口案例
4.1 创建基本的服务器—app.js
1 | import express from 'express' |
4.2 创建 db 数据库操作模块—index.js
1 | import mysql from 'mysql2' |
4.3 创建 user_ctrl 模块—user_ctrl.js
1 | import db from '../db/index.js' |
4.4 创建 user_router 模块—user_router.js
1 | import express from 'express' |
4.5 启动API项目,并请求
启动项目
1 | nodemon .\app.js |
请求结果
五 参考
- npm-express
- Express中文网
- npm-mysql2
- npm-nodemon