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