如何使用sequelize摆脱行

时间:2019-08-22 04:23:16

标签: mariadb sequelize.js

我正在使用续集。

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",

        },......
     ]
 }

1 个答案:

答案 0 :(得分:1)

只需将findAndCountAll更改为count

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

收件人:

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