gpt4 book ai didi

javascript - 如何在 Sails/Waterline 的生命周期回调中调用模型实例方法?

转载 作者:数据小太阳 更新时间:2023-10-29 04:16:03 24 4
gpt4 key购买 nike

我已经建立了一个带有 2 个实例方法的简单模型。如何在生命周期回调中调用这些方法?

module.exports = {

attributes: {

name: {
type: 'string',
required: true
}

// Instance methods
doSomething: function(cb) {
console.log('Lets try ' + this.doAnotherThing('this'));
cb();
},

doAnotherThing: function(input) {
console.log(input);
}

},

beforeUpdate: function(values, cb) {
// This doesn't seem to work...
this.doSomething(function() {
cb();
})
}

};

最佳答案

看起来自定义定义的实例方法并非设计为在生命周期中调用,而是在查询模型之后调用。

SomeModel.findOne(1).done(function(err, someModel){
someModel.doSomething('dance')
});

链接到文档中的示例 - https://github.com/balderdashy/sails-docs/blob/0.9/models.md#custom-defined-instance-methods

关于javascript - 如何在 Sails/Waterline 的生命周期回调中调用模型实例方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19421253/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com