node.js项目如何连接MySQL,方法操作是什么
Admin 2022-06-11 群英技术资讯 482 次浏览
1.1 安装koa-generator
在终端输入:
$ npm install -g koa-generator
1.2 使用koa-generator生成koa2项目
$ koa2 HelloKoa2
成功创建项目后,进入项目目录,并执行npm install
命令
$ cd HelloKoa2 $ npm install
1.3 启动项目
在终端输入:
$ npm start
项目启动后,默认端口号是3000,在浏览器中运行可以得到下图的效果说明运行成功。
2.1刚刚创建的文件使用webstorm打开
新建一个db目录
2.2查看Sequelize文档
使用npm安装Sequelize
npm install --save sequelize
你还必须手动为所选数据库安装驱动程序选择一个方法之一:
# 选择以下之一: $ 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 Server
我这里下载得是MySQL2
2.3连接数据库
再刚刚创建得db文件加里面添加**config.js**
添加连接代码:
module.exports = { dbsMysql: 'mysql://root:123456@localhost:3306/new' //root是数据库管理员账号,‘123546'是密码 3306是端口号(MySQL默认是3306) school_admin是数据库名称 }
继续在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 = sequelize
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= new2
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 = router
4.2在app.js
里面添加路由
//引入刚刚创建的new2路由 const new2 =require('./routes/new2')
//使用我们的路由 app.use(new2.routes(),new2.allowedMethods())
4.3启动项目
在数据库中查看
5.测试
5.1使用浏览器查看
输入url:http://localhost:3000/new2
5.2.使用postman测试接口
测试find接口(因为我们写的find方法使用的post方法所以记得将get换成post):
http://localhost:3000/new2/find
测试get接口
展示一下最后的目录
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
这篇文章主要介绍了Element el-button 按钮组件的使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
js怎样实现浏览器储存功能?有什么方法?对于浏览器的存储方案,我们比较常见的有Cookie、LocalStorage等,下面我们就来看看它们有何不同?
今天给大家分享一个比较有趣的实例,相信很多朋友都有抢过微信红包吧,有的人红包抢到的金额的多,有的人抢到的少,那么大家是否有好奇这是怎样实现的,下面小编就给大家介绍一下用JavaScript实现指定红包金额的算法,感兴趣的朋友就继续往下看吧。
这篇文章给大家分享的是有关vue中tab切换页面实现的内容,tab切换页面的应用场景有很多,小编觉得挺实用的,因此分享给大家做个参考,下面是四种实现tab切换页面的方法,感兴趣的朋友可以参考。
node实现定时任务的方法:1、利用setTimeOut和event事件进行管理;2、对所有加入的事件进行排序,并且计算当前时间和最近一个事件发生时间的时间间隔;3、调用setTimeOut设置回调即可。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008