第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

沒有看到播種數(shù)據(jù)庫(kù)后所需的續(xù)集模型屬性

沒有看到播種數(shù)據(jù)庫(kù)后所需的續(xù)集模型屬性

守著一只汪 2023-08-18 10:00:51
更新下面有人建議添加一個(gè)模型 ID 來(lái)進(jìn)行喊叫,我不再收到錯(cuò)誤,但現(xiàn)在沒有任何內(nèi)容被保存到我的數(shù)據(jù)庫(kù)中?添加以下新信息:我在用戶和喊話之間有一對(duì)多的關(guān)系。兩種模型都有電子郵件屬性,我正在嘗試使用一種神奇的方法來(lái)設(shè)置喊話。當(dāng)我使用 user.createShoutout() 時(shí),我可以生成喊話,但電子郵件屬性不會(huì)顯示在數(shù)據(jù)庫(kù)中。const Sequelize = require('sequelize')const db = require('../db')const Shoutout = db.define('shoutout', {//NEW  id: {    allowNull: false,    autoIncrement: true,    primaryKey: true,    type: Sequelize.INTEGER  }, //OLD  name: {    type: Sequelize.STRING,    validate: {      notEmpty: true    },    email: {      type: Sequelize.STRING,      unique: true,      allowNull: false    }  },  message: {    type: Sequelize.TEXT,    allowNull: false  },  from: {    type: Sequelize.STRING  }})module.exports = Shoutout協(xié)會(huì):User.hasMany(Shoutouts)Shoutouts.belongsTo(User)User.hasMany(Emails)Emails.belongsTo(User)當(dāng)我使用 user.AddShoutout() 時(shí),如下所示:   let paramsObj = {             name: addEmail.firstName,        email:addEmail.email,        message: 'test msg',        userId: 3}//NEWlet id = 1;    const addInfo = await userThree.addShoutout(id,paramsObj)//新的不再出現(xiàn)對(duì)象錯(cuò)誤,實(shí)際上沒有看到任何錯(cuò)誤。但當(dāng)我查看我的喊出表時(shí),沒有任何內(nèi)容被添加。當(dāng)我 console.log addInfo 嘗試創(chuàng)建喊話的用戶被返回時(shí)?我需要幫助來(lái)嘗試讓這個(gè)用戶模型魔術(shù)方法生成新的喊話!感謝您閱讀本文以及任何建議!
查看完整描述

1 回答

?
躍然一笑

TA貢獻(xiàn)1826條經(jīng)驗(yàn) 獲得超6個(gè)贊

您的電子郵件字段嵌套在姓名字段中


const Sequelize = require('sequelize')

const db = require('../db')


const Shoutout = db.define('shoutout', {


  id: {

    allowNull: false,

    autoIncrement: true,

    primaryKey: true,

    type: Sequelize.INTEGER

  }, //OLD

  name: {

    type: Sequelize.STRING,

    validate: {

      notEmpty: true

    },

    email: { # <----------------------------- nested too deep

      type: Sequelize.STRING,

      unique: true,

      allowNull: false

    }

  },

  message: {

    type: Sequelize.TEXT,

    allowNull: false

  },

  from: {

    type: Sequelize.STRING

  }

})


module.exports = Shoutout


查看完整回答
反對(duì) 回復(fù) 2023-08-18
  • 1 回答
  • 0 關(guān)注
  • 139 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)