sequelize capitalize name before saving in database - instance hook

柔情痞子 提交于 2019-12-08 12:02:52

问题


I am new to sequelize and I am trying to capitalize the first letter of the name every time I create a new "Rider" so it looks capitalized on my table. I haven't been able to do it:

this is my model:

const db = require("./db");
const Sequelize = require("sequelize");

//(w / WSL ranking, Last tournament won, Country, favorite wave, current board).
const Rider = db.define("rider", {
  name: {
    type: Sequelize.STRING,
    allowNull: false
  },
  country: Sequelize.STRING,
  wsa: {
    type: Sequelize.INTEGER,
    allowNull: false
  },
  currentBoard: {
    type: Sequelize.STRING,
    allowNull: false
  },
  favWave: Sequelize.STRING,
  lastTournamentWon: Sequelize.STRING,
  img: {
    type: Sequelize.TEXT,
    defaultValue:
      "no_found.png"
  }


});

Rider.beforeCreate = () => {
  return this.name[0].toUpperCase() + this.name.slice(1);
}

module.exports = Rider;

When I create a new row, the name doesn't capitalize and I haven't been able to spot why? Do I have to pass an instance and a callback function as parameters for my hook?


回答1:


As mentioned in the comment by @iwaduarte, you need to pass the instance, like below

const User = sequelize.define('user', {
  username: Sequelize.STRING,
});

User.hook('beforeCreate', (user, options) => {
  user.username = user.username.charAt(0).toUpperCase() + user.username.slice(1);
});

sequelize.sync({ force: true })
  .then(() => User.create({
    username: 'one',
  }).then((user) => {
    console.log(user.username);
  })
);


来源:https://stackoverflow.com/questions/50764922/sequelize-capitalize-name-before-saving-in-database-instance-hook

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!