node.js - 使用sequelize查询出来的createdAt字段格式问题
ringa_lee
ringa_lee 2017-04-17 16:19:53
0
2
853

使用sequelize查询出来的createdAt字段,是“Tue Mar 14 2017 16:02:21 GMT+0800 (中国标准时间)”这样的字符串。怎样恢复原有格式或者进行自定义的格式化?

ringa_lee
ringa_lee

ringa_lee

reply all(2)
迷茫

new Date("Tue Mar 14 2017 16:02:21 GMT+0800 (China Standard Time)").getTime()

伊谢尔伦
  • What is your original format? YYYY-MM-DD HH:mm:ss ???

const model = sequelize.define('model', {//columns specifications
  createdAt: {
      type : TYPE.DATE,
      allowNull : false,
      get() {
        const createAt = this.getDataValue('createAt')
        // createAt is an instance of date, you could operate it with moment library
        // to get ur format
        return createAt
      },
      set(createAt) {
        return this.setDataValue('createAt',createAt)
      }
    }
 }, {
  // options
  timestamps: true // the createdAt and updatedAt will be stored by YYYY-MM-DD HH:mm:ss
});
  • If all your CRUD operations on the database are done through sequelize, there should be no problem

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!