开发者问题收集

在播种数据库后没有看到所需的续集模型属性

2020-11-19
188

更新

下面有人建议为喊话添加一个模型 ID,这样我就不再收到错误,但现在没有任何内容被保存到我的数据库中? 添加以下新信息:

我的用户和喊话之间存在一对多关系。两个模型都有电子邮件属性, 我试图使用魔术方法来设置喊话。当我使用 user.createShoutout() 我可以生成喊话,但电子邮件属性不会显示在数据库中。

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

关联:

User.hasMany(Shoutouts)
Shoutouts.belongsTo(User)

User.hasMany(Emails)
Emails.belongsTo(User)

当我使用 user.AddShoutout() 时,如下所示:

   let paramsObj = {     
        name: addEmail.firstName,
        email:addEmail.email,
        message: 'test msg',
        userId: 3
}
//NEW
let id = 1;
    const addInfo = await userThree.addShoutout(id,paramsObj)

//NEW

不再收到对象错误,实际上没有看到任何错误。但是当我查看我的喊话表时,什么都没有添加。

当我使用 console.log addInfo 尝试创建喊话的用户是否被返回?

我需要帮助尝试让这个用户模型魔术方法来生成新的喊话!

感谢您阅读本文,并提出任何建议!

1个回答

您的电子邮件字段嵌套在姓名字段内

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
Dap
2020-11-19