6

我有一个书本模型。这是它的架构

BookSchema = new Schema({
    title: String
    , lowestPrice: Number
});
BookSchema.path('title').required(true);
Bookchema.pre('save', function (next) {
    try {
        // chai.js
        expect(this.title).to.have.length.within(1, 50);
    } catch (e) {
        next(e);
    }
    next();
});

当一本书的商品被创建时,如果商品的价格低于原价,我必须更新这本书的最低价格。因为我需要知道原产地最低价格,所以我不能使用Book.update(),它跳过了预保存挂钩,而是用于Book.findById(id).select('lowestPrice')查找书籍而不是更新它。问题是我不想选择该title字段,因此当涉及到 pre-save 挂钩时,TypeError发生的 forthis.title是未定义的。有没有办法跳过预保存挂钩?

4

1 回答 1

3

Book.update与仅在新价格低于原始价格时才选择文档的条件一起使用:

Book.update({_id: id, lowestPrice: {$gt: price}}, {$set: {lowestPrice: price}},
    function (err, numberAffected) {
        if (numberAffected > 0) {
            // lowestPrice was updated.
        }
    }
);
于 2012-08-12T04:30:23.600 回答