gpt4 book ai didi

mariadb - 如何使用 sequelize 删除行

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

我正在使用 Sequelize 。

const total = await models.parcel.findAndCountAll({ group: ['status'] });

我得到了这个回应。但我只想在响应中不计算行数。
我怎样才能做到这一点?非常感谢您阅读我的问题。
{
"count": [
{
"status": null,
"count": 8
},
{
"status": "1",
"count": 5
},
{
"status": "2",
"count": 3
}
],
"rows": [
{
"id": 3,
"companyName": "hy",
"invoice": "904103",
"receiverName": "Rtrt",

},......
]
}

最佳答案

只需将 findAndCountAll 更改为 count :

await models.parcel.findAndCountAll({ group: ['status'] });

至 :
await models.parcel.count({ group: ['status'] });

关于mariadb - 如何使用 sequelize 删除行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57602017/

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