溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nodejs版orm庫--sequelize是什么

發(fā)布時間:2020-09-10 14:24:02 來源:億速云 閱讀:197 作者:小新 欄目:web開發(fā)

這篇文章主要介紹nodejs版orm庫--sequelize是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

sequelize是nodejs版的orm庫,用過laravelORM的能很快能上手

簡單代碼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 });  // 同步模型到數據庫-創(chuàng)建表
    // 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是什么的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI