【问题标题】:sequelize beforeSave hook not firingsequelize beforeSave 挂钩未触发
【发布时间】:2018-06-29 17:11:29
【问题描述】:

我已经使用 sequelize-auto 生成了模型,并且需要使用 beforeSave 挂钩(请参阅 here)。据我所知,钩子没有开火。 sequelize 版本 ^4.20.1,sequelize-auto 版本 ^0.4.29,express 版本 ~4.15.5。有人可以帮忙吗?

module.exports = function(sequelize, DataTypes) {
  return sequelize.define('trad', {
    id: {
      type: DataTypes.INTEGER,
      allowNull: false,
      primaryKey: true,
      autoIncrement: true
    },
    geom: {
      type: DataTypes.GEOMETRY('POINT', 4326),
      allowNull: true
    },
    ...
  }, {
    hooks: {
      beforeSave: (instance, options) => {
        console.log('Saving geom: ' + instance.geom);
        if (instance.geom && !instance.geom.crs) {
          instance.geom.crs = {
            type: 'name',
            properties: {
              name: 'EPSG:4326'
            }
          };
        }
      }
    },
    tableName: 'trad',
    timestamps: false,
  });
};

这是来自 PUT 请求的代码:

// Update (PUT)
router.put('/table/:table/:id', function(req, res, next) {
  db.resolveTableName( req )
  .then( table => {
    const primaryKey = table.primaryKeyAttributes[0];
    var where = {};
    where[primaryKey] =  req.params.id;
    console.log('Put - pkey: ' + primaryKey);

    auth.authMethodTable( req )
    .then( function() {
      table.update( req.body, {
        where: where,
        returning: true,
        plain: true
      })
      .then( data => {
        res.status(200).json( data[1].dataValues );
      })
      .catch( function (error ) {
        res.status(500).json( error );
      });
    })
    .catch( function( error ) {
      res.status(401).json('Unauthorized');
    });
  })
  .catch( function(e) {
    res.status(400).json('Bad request');
  });
});

【问题讨论】:

  • 你能分享你试图保存模型实例的代码吗?
  • 好主意@mcranston18。完成!

标签: node.js postgresql sequelize.js postgis


【解决方案1】:

beforeSave 挂钩会针对单个模型实例触发,但除非指定,否则不会针对批量更新。在您的情况下,您有以下两种选择之一:

(1) 将individualHooks 传递给您的查询:

table.update( req.body, {
  where: where,
  returning: true,
  individualHooks: true
  plain: true
})

(2) 更新前获取模型实例:

table.findById(req.params.id)
  .then(function(instance) {
    instance.update(req.body, {
      returning: true
      plain: true
    })
  })

【讨论】:

  • 谢谢@mcranston18。我使用了选项 2,因为这似乎是更新单个记录的更简洁的方法。钩子现在正在射击。看来,使用选项 2 续集只保存更改的属性 - 加上我添加了钩子的几何图形。
猜你喜欢
  • 1970-01-01
  • 2021-06-29
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-10-31
  • 1970-01-01
  • 2017-11-03
  • 2016-11-07
相关资源
最近更新 更多