91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

nodejs版orm庫--sequelize是什么

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

這篇文章主要介紹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 });  // 同步模型到數據庫-創建表
    // 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是什么的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

色达县| 黎城县| 手游| 鹰潭市| 柘城县| 汶川县| 裕民县| 磴口县| 碌曲县| 内江市| 文成县| 阜城县| 西和县| 安吉县| 米脂县| 阿鲁科尔沁旗| 苗栗市| 神农架林区| 广灵县| 社旗县| 赫章县| 藁城市| 广饶县| 四会市| 合阳县| 璧山县| 佛冈县| 安远县| 巴林左旗| 浙江省| 绥化市| 五河县| 瑞安市| 保德县| 延长县| 上杭县| 曲沃县| 都江堰市| 北碚区| 霍州市| 建始县|