我正在使用续集。
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",
},......
]
}
答案 0 :(得分:1)
只需将findAndCountAll
更改为count
:
await models.parcel.findAndCountAll({ group: ['status'] });
收件人:
await models.parcel.count({ group: ['status'] });