gpt4 book ai didi

node.js - squalize 模型的实例是否有更新方法?

转载 作者:行者123 更新时间:2023-12-03 22:27:27 24 4
gpt4 key购买 nike

此代码是否有效?

    models.X.findOne({
where: {
id:bla
}
})
.then(x => {
// TODO: check if this will work or not?
x
.update({
someProp: someVal
})
.then(() => {});
});

我检查了文档,它说更新是一种公共(public)静态方法,所以我认为这段代码有效。

最佳答案

models.X.findOne({
where: {
id:bla
} ,
// raw : true // <--- Don't use this one , or else you will not get instance of model
}); // <--- This will return the instance of the X

是的,您可以使用
x.update({ someProp: someVal });

关于node.js - squalize 模型的实例是否有更新方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52862447/

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