這篇文章主要介紹nodejs版orm庫--sequelize是什么,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)建站10多年成都企業(yè)網(wǎng)站建設(shè)服務(wù);為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁設(shè)計(jì)及高端網(wǎng)站定制服務(wù),成都企業(yè)網(wǎng)站建設(shè)及推廣,對葡萄架等多個領(lǐng)域擁有多年的網(wǎng)站維護(hù)經(jīng)驗(yàn)的網(wǎng)站建設(shè)公司。
sequelize
是nodejs版的orm庫,用過laravelORM
的能很快能上手
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 默認(rèn)為 true validate: { async isUnique(name) { const res = await User.findOne({where: {name}}) if (res) throw new Error('用戶名已存在') }, // len: [1,2] } }, }, { // 這是其他模型參數(shù) sequelize, // 我們需要傳遞連接實(shí)例 // modelName: "User", // 我們需要選擇模型名稱 tableName:'users' // 表名,默認(rèn)為模型名的復(fù)數(shù)單詞 } ); Address.init( { id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true, }, name: { type: DataTypes.STRING, unique: true, // allowNull 默認(rèn)為 true }, }, { sequelize, modelName: "Address", } ); // 模型關(guān)系 多對多 User.belongsToMany(Address, { through: "userAddress", as:'addres' }); // through 代表中間表的名字,as是查詢別名 Address.belongsToMany(User, { through: "userAddress" }); (async () => { try { // await sequelize.sync({ alter: true }); // 同步模型到數(shù)據(jù)庫-創(chuàng)建表 // const user = await User.findOne({ where: { name: {[Op.like]:'%小%'} } }); // 基本查詢 const [user] = await User.findOrCreate({where:{name:'小小'},include:'addres'}); // 順帶查詢到關(guān)聯(lián)模型的數(shù)據(jù) const [address] = await Address.findOrCreate({where:{name:'小小de地址'}}); await user.addAddress(address); // 關(guān)聯(lián)增加 console.log(user.toJSON()); } catch (e) { console.log(e); } })();
以上是nodejs版orm庫--sequelize是什么的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)頁名稱:nodejs版orm庫--sequelize是什么
本文鏈接:http://vcdvsql.cn/article36/peiepg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營銷型網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站改版、網(wǎng)站設(shè)計(jì)、搜索引擎優(yōu)化、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)