nodejs版的orm库--sequelize
程序员文章站
2022-03-06 14:16:51
...
本篇文章带大家了解一下nodejs数据库orm扩展-sequelize。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
sequelize
是nodejs版的orm库,用过laravelORM
的能很快能上手
【视频教程推荐:node js教程 】
具体文档
简单代码demo
const { Sequelize, DataTypes, Model, QueryTypes, Op } = require("sequelize"); const sequelize = new Sequelize("sqlite://sql.db", { logging: false }); class User extends Model {} class Address extends Model {} User.init( { // 在这里定义模型属性 id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true, }, name: { type: DataTypes.STRING, unique: true, // allowNull 默认为 true validate: { async isUnique(name) { const res = await User.findOne({where: {name}}) if (res) throw new Error('用户名已存在') }, // len: [1,2] } }, }, { // 这是其他模型参数 sequelize, // 我们需要传递连接实例 // modelName: "User", // 我们需要选择模型名称 tableName:'users' // 表名,默认为模型名的复数单词 } ); Address.init( { id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true, }, name: { type: DataTypes.STRING, unique: true, // allowNull 默认为 true }, }, { sequelize, modelName: "Address", } ); // 模型关系 多对多 User.belongsToMany(Address, { through: "userAddress", as:'addres' }); // through 代表中间表的名字,as是查询别名 Address.belongsToMany(User, { through: "userAddress" }); (async () => { try { // await sequelize.sync({ alter: true }); // 同步模型到数据库-创建表 // const user = await User.findOne({ where: { name: {[Op.like]:'%小%'} } }); // 基本查询 const [user] = await User.findOrCreate({where:{name:'小小'},include:'addres'}); // 顺带查询到关联模型的数据 const [address] = await Address.findOrCreate({where:{name:'小小de地址'}}); await user.addAddress(address); // 关联增加 console.log(user.toJSON()); } catch (e) { console.log(e); } })();
更多编程相关知识,可访问:编程教学!!
以上就是nodejs版的orm库--sequelize的详细内容,更多请关注其它相关文章!
上一篇: css三个字如何和两个字对齐
下一篇: css怎么设置鼠标变背景
推荐阅读
-
PowerDesigner 建立与数据库的连接以便生成数据库和从数据库生成到PD中(Oracle 10G版)
-
PowerDesigner 建立与数据库的连接以便生成数据库和从数据库生成到PD中(Oracle 10G版)
-
研究Python的ORM框架中的SQLAlchemy库的映射关系
-
Python的ORM框架中SQLAlchemy库的查询操作的教程
-
如何解决提示程序缺少一个名为"互联网支持库2.0版的易语言支持库,起文件
-
Mysql数据库绿色版安装教程 解决系统错误1067的方法
-
MySQL 5.7及8.0版本数据库的root密码遗忘的解决方法
-
flask框架使用orm连接数据库的方法示例
-
mysql 5.1版本修改密码及远程登录mysql数据库的方法
-
在Python的Django框架上部署ORM库的教程