如何在json中返回值?
exports.get = id => Model.sum('price',
{
where: {
id,
}
}
);
结果
23
所需
{ sum: 23 }
答案 0 :(得分:0)
您可以通过两种方式进行操作:
1。只需更改响应即可:
exports.get = id => Model.sum('price',
{
where: {
id,
}
}
).then(sum => {sum}); //<----- Little hack
2。使用sequelize.fn ,下面将返回array,因此您需要返回array的第一个元素,以获得预期的结果
exports.get = id => Model.findAll({
attributes: [[sequelize.fn('SUM', sequelize.col('price')), 'sum']] ,
where : { id }
});