Sequelize 增删改查接口
程序员文章站
2022-06-12 18:06:29
...
Sequelize 基本的增删改查
//查单个 findOne({where:{查询条件}})
async function findOne() {
let result = await UserList.findOne({where: {id: 1}});
console.log(result);
}
//查所有 findAll 不传条件则查询所有
async function findAll() {
let result = await UserList.findAll({where: {id: 1}});
console.log(result);
}
//更新
async function update() {
let res = await UserList.update({userphone: 15111111111}, {where: {id: 1}});
console.log(res);
}
//删除
async function destroy() {
let result = await UserList.destroy({where: {id: 15}});
console.log(result);
}
//查询插入 : 不存在 => 插入, 存在 => 不插入
async function findCreateFind() {
//默认的: 查询的条件,没有就创建,有就不作为
let result = await UserList.findCreateFind({defaults: {userphone:xxx,password:'111'}, where: {username:xx}});
console.log(result);
}
更多请参考官网:sequelize官网
上一篇: PHP正则表达式解决方案
下一篇: SpringMVC创建项目流程
推荐阅读
-
用js简单提供增删改查接口
-
Mybatis增删改查(非接口,接口两种方式)
-
node实现简单的增删改查接口实例代码
-
Nodejs + sequelize 实现增删改查操作
-
koa+mongoose实现简单增删改查接口的示例代码
-
sequelize的简单使用(增、删、查、改)
-
找bug:前后端分离项目中,后端接口的增删改查用postman测试没问题,在前端写数据没有任何反应。
-
springboot加mybatis实现增删改查正常运行,接口postman测试却报错(实际上是增删改查返回类型错误)
-
HZERO前端拦截工具和mock工具的使用及实现增删改查接口测试
-
[Java接口] ArrayList增删改查方法