|
@@ -5,10 +5,18 @@ Author:shileiye
|
|
|
Updated:2022.6.7
|
|
|
|
|
|
使用说明
|
|
|
-1、安装依赖:npm install
|
|
|
-2、运行命令:npm run dev
|
|
|
- 运行命令(效果与上面相同,不需重复执行):node .\server.js
|
|
|
-3、访问地址:http://127.0.0.1:3000/api/index
|
|
|
+1、创建一个Mysql数据库demo,使用以下语句创建表结构
|
|
|
+CREATE TABLE `todos` (
|
|
|
+ `id` BIGINT ( 20 ) NOT NULL AUTO_INCREMENT,
|
|
|
+ `name` VARCHAR ( 255 ) DEFAULT NULL,
|
|
|
+ `description` VARCHAR ( 255 ) DEFAULT NULL,
|
|
|
+PRIMARY KEY ( `id` )
|
|
|
+) ENGINE = INNODB DEFAULT CHARSET = utf8mb4 AUTO_INCREMENT = 1;
|
|
|
+2、安装依赖:`npm install`
|
|
|
+3、运行命令:`npm run dev`
|
|
|
+ 运行命令(效果与上面相同,不需重复执行):`node .\server.js`
|
|
|
+4、访问地址:http://127.0.0.1:3000/api/index
|
|
|
+
|
|
|
*/
|
|
|
|
|
|
var express = require("express"); // 导入express框架
|