3

我对猫鼬有一些问题。我的目标是在预保存期间,我将能够修改对象,如果需要,可以进行拆分标签等操作,或者在另一种情况下计算子文档持续时间的总和并在主文档中更新它。

我发现如果我加载一个模型,然后调用 doc.update 传递新数据,只有schema.pre('update', ...)触发器,并且我的中间件中的任何更改this都不会更新。我也尝试this.set('...', ....);在我的更新中间件中使用无济于事。

似乎如果我这样做doc.save(...)了,那么对 inside 的更改会thisschema.pre('save', ...)预期附加。除了将发布的变量扩展到我的模型的属性和保存之外,我没有看到任何利用 doc.update 来实现此目的的方法。

我的目标: - 通过 - 更新现有文档doc.update(properties, ....) - 在保存期间使用中间件来修改文档、进行高级验证和更新相关文档 - 在更新期间使用中间件来修改文档、进行高级验证和更新相关文档 - 可互换使用模型。 findByIdAndUpdate、model.save、model.findById->doc.update、model.findById->doc.save 和所有都进入我的保存/更新中间件。

一些任意示例代码:

function loadLocation(c) {
    var self = this;
    c.Location.findById(c.params.id, function(err, location) {
        c.respondTo(function(format) {
            if (err | !location) {
                format.json(function() {
                    c.send(err ? {
                        code: 500,
                        error: err
                    } : {
                        code: 404,
                        error: 'Location Not Found!'
                    });
                });
                format.html(function() {
                    c.redirect(c.path_to.admin_locations);
                });
            } else {
                self.location = location;
                c.next();
            }
        });
    });
}

LocationController.prototype.update = function update(c) {
    var location = this.location;
    this.title = 'Edit Location Details';

    location.update(c.body.Location, function(err) {
        c.respondTo(function(format) {
            format.json(function() {
                c.send(err ? {
                    code: 500,
                    error: location && location.errors || err
                } : {
                    code: 200,
                    location: location.toObject()
                });
            });
            format.html(function() {
                if (err) {
                    c.flash('error', JSON.stringify(err));
                } else {
                    c.flash('info', 'Location updated');
                }
                c.redirect(c.path_to.admin_location(location.id));
            });
        });
    });
};

module.exports = function(compound) {
    var schema = mongoose.Schema({
        name: String,
        address: String,
        tags: [{ type: String, index: true }],
        geo: {
            type: {
                type: String,
            default:
                "Point"
            },
            coordinates: [Number] // Longitude, Latitude
        }
    });
    schema.index({
        geo: '2dsphere'
    });
    var Location = mongoose.model('Location', schema);
    Location.modelName = 'Location';
    compound.models.Location = Location;

    schema.pre('save', function(next) {
        if(typeof this.tags === 'string') {
            this.tags = this.tags.split(',');
        }
    });
};

==== * 修改样本 * ====

module.exports = function(compound) {
    var schema = mongoose.Schema({
        name: String,
        bio: String
    });

    schema.pre('save', function(next) {
        console.log('Saving...');
        this.bio = "Tristique sed magna tortor?"; 
        next();
    });

    schema.pre('update', function(next) {
        console.log('Updating...');
        this.bio = "Quis ac, aenean egestas?"; 
        next();
    });

    var Author = mongoose.model('Author', schema);
    Author.modelName = 'Author';
    compound.models.Location = Author;
};
4

2 回答 2

9

pre钩子适用于doc.save()doc.update()。在这两种情况下都是this指文档本身。

请注意,在编译模型之前,需要将钩子添加到您的架构中。

schema.pre('save', function(next) {
    if(typeof this.tags === 'string') {
        this.tags = this.tags.split(',');
    }
});
var Location = mongoose.model('Location', schema);
于 2013-08-14T19:57:45.113 回答
0

Mongoose 不支持模型更新 API 的挂钩。但是,可以通过 Monkey-patch 完成更新挂钩。Hooker NPM 包是一种干净利落的好方法。

RESTeasy项目是 Node REST API 的样板,其中包含演示如何执行此操作的代码:

var hooker = require('hooker');

var BaseSchema = new mongoose.Schema({
  sampleString: {
    type: String
  }
});

var BaseModel = mongoose.model('Base', BaseSchema);

// Utilize hooks for update operations. We do it in this way because MongooseJS
// does not natively support update hooks at the Schema level. This is a way
// to support it.
hooker.hook (BaseModel, 'update', {
  pre: function () {
    // Insert any logic you want before updating to occur here
    console.log('BaseModel pre update');
  },
  post: function () {
    // Insert any logic you want after updating to occur here
    console.log('BaseModel post update');
  }
});

// Export the Mongoose model
module.exports = BaseModel;
于 2014-09-22T23:11:59.310 回答