gpt4 book ai didi

javascript - 如何为 Sequelize 更新添加日志记录

转载 作者:行者123 更新时间:2023-11-30 19:01:22 24 4
gpt4 key购买 nike

在我的项目 sequelize 中禁用了日志记录,但我希望在确切的查询中主动记录。

我该怎么做?

TableModel.update(
{counter: 0},
{where: {
id: itm.i
}},
).then((res) =>{
console.log('res',res);
}).catch(e => {
console.log('update error : ', e);
});

我知道如何在 findall 查询中这样做:

TableModel.findAll({where: {...}, logging: console.log})

但在更新中,我找不到任何解决方案。

Sequelize 版本:5.21

最佳答案

我找到了解决方案。

只需在选项中添加 logging:true 即可。

TableModel.update(
{counter: 0},
{
where: {
id: itm.i
},
logging:true
}
).then((res) =>{
console.log('res',res);
}).catch(e => {
console.log('update error : ', e);
});

关于javascript - 如何为 Sequelize 更新添加日志记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59481110/

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