sequelize beforeSave hook不解雇

时间:2018-01-20 16:25:10

标签: node.js postgresql sequelize.js postgis

我使用sequelize-auto生成模型,需要使用beforeSave钩子(参见here)。据我所知,钩子并没有发射。续集版^ 4.20.1,续集 - 自动版^ 0.4.29,快递版~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');
  });
});

1 个答案:

答案 0 :(得分: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
    })
  })
相关问题