sequelize连接mysql_node.js通过Sequelize 连接MySQL

本文介绍了如何通过Koa2和Sequelize库连接MySQL数据库,创建模型,定义路由以及进行增删查改操作。详细步骤包括项目初始化,安装依赖,配置数据库连接,定义数据模型,创建路由并实现HTTP请求接口。
摘要由CSDN通过智能技术生成

node.js通过Sequelize 连接MySQL

一.通过koa2脚手架构建项目

1.1 安装koa-generator

在终端输入:

$ npm install -g koa-generator1

1.2 使用koa-generator生成koa2项目

$ koa2 HelloKoa21

成功创建项目后,进入项目目录,并执行npm install命令

$ cd HelloKoa2

$ npm install1

2

1.3 启动项目

在终端输入:

$ npm start1

项目启动后,默认端口号是3000,在浏览器中运行可以得到下图的效果说明运行成功。

二.创建连接

2.1刚刚创建的文件使用webstorm打开

新建一个db目录

3f7b0f788a63fb4aa646e375281f3678.png

2.2查看Sequelize文档

使用npm安装Sequelize

npm install --save sequelize1

你还必须手动为所选数据库安装驱动程序选择一个方法之一:

# 选择以下之一:

$ npm install --save pg pg-hstore # Postgres

$ npm install --save mysql2

$ npm install --save mariadb

$ npm install --save sqlite3

$ npm install --save tedious # Microsoft SQL Server1

2

3

4

5

6

我这里下载得是MySQL2

2.3连接数据库

再刚刚创建得db文件加里面添加**config.js**

添加连接代码:

module.exports = { dbsMysql: 'mysql://root:123456@localhost:3306/new' //root是数据库管理员账号,‘123546’是密码 3306是端口号(MySQL默认是3306) school_admin是数据库名称

}1

2

3

4

5

6

继续在db文件夹里面添加mysql.js

添加连接以及添加日记:

const Sequelize = require('sequelize');

const mysqlurl = require('./config').dbsMysql

const sequelize = new Sequelize(mysqlurl, { // 选择一种日志记录参数 logging: console.log // 默认值,显示日志函数调用的第一个参数

});

// //每次启动server刷新数据库

// (async ()=>{

// await sequelize.sync({ force: true });

// })() module.exports = sequelize1

2

3

4

5

6

7

8

9

10

11

12

13

14

三.创建模型

3.1模型定义

在db目录下添加models文件夹再添加一个new2.js

定义模型:

const { Sequelize, DataTypes, Model } = require('sequelize');

const sequelize = require('../mysql');

const new2 = sequelize.define('t_new2', { name: { type: DataTypes.STRING, allowNull: false }, }, { // 这是其他模型参数 freezeTableName: true });

// 定义的模型是类本身

module.exports= new21

2

3

4

5

6

7

8

9

10

11

12

13

14

15

四.添加路由

4.1创建new2路由

在routes文件夹中添加new2.js

//引入kob得routes模块

const router = require('koa-router')()

//定义模型为刚刚创建得new2.js

let Model = require("../db/models/new2");

//正常来说启动端口为http://localhost:3000 添加/new2就可以进入new2路由

router.prefix('/new1')

// 进入new2路由以后可以打印this is a users response!

router.get('/', function (ctx, next) { ctx.body = 'this is a users response!'

})

//设置增加add接口

router.post('/add', async function (ctx, next) { console.log(ctx.request.body) const new2 = await Model.create(ctx.request.body); ctx.body = { code:200, data:new2 }

})

//设置查询find接口

router.post('/find', async function (ctx, next) { const new2 =await Model.findAll({include: []}) console.log(1111) ctx.body = { code: 200, data: new2 }

})

//设置通过id得到所需信息的get接口

router.post('/get', async function (ctx, next) { // let users = await User. // find({}) console.log(ctx.request.body) let new2 = await Model.findOne({ // attributes: ['name', 'where'] where: { id: ctx.request.body.id } }); ctx.body = { code:200, data:new2 }

})

//设置修改update接口

router.post('/update', async function (ctx, next) { console.log(ctx.request.body) // let pbj = await Model.update({ _id: ctx.request.body._id }, ctx.request.body); let new2 = await Model.update(ctx.request.body, { where: { id: ctx.request.body.id } }); ctx.body = new2

})

//设置删除delete接口

router.post('/delete', async function (ctx, next) { console.log(ctx.request.body) // 删除所有名为 "Jane" 的人 await Model.destroy({ where: { id: ctx.request.body.id } }); ctx.body = 'shibai '

})

// //每次启动server刷新数据库

// (async ()=>{

// await sequelize.sync({ force: true });

// })()

module.exports = router1

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

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

4.2在app.js里面添加路由

143c49b860ec7a0d5a46fdb53d1d9844.png

bcdd00b4c6ce1b2734d0e8982265c136.png

//引入刚刚创建的new2路由

const new2 =require('./routes/new2')1

2

//使用我们的路由

app.use(new2.routes(),new2.allowedMethods())1

2

4.3启动项目

b457c436596cfe161a44110cd45ef5e3.png

在数据库中查看

94c81e4acd899fce14e4a24dff22c673.png

5.测试

5.1使用浏览器查看

输入url:http://localhost:3000/new2

9e367721c455e88871bae8259bb0937f.png

5.2.使用postman测试接口

测试find接口(因为我们写的find方法使用的post方法所以记得将get换成post):

http://localhost:3000/new2/find1

986789e80134bfdd14180bd96812ed41.png

测试get接口

94ae00471b865dc7a255f938ce9132d6.png

展示一下最后的目录

9b04a4c4f8a014a8696ffc8b84f70e29.png

文章来源: blog.csdn.net,作者:ky_xin,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/weixin_44858959/article/details/111691928

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值