我得到了一个有效的返回计算所有值列我的MYSQL表,但是当我去检查我的api结果时;列值sum命令出现在JSON的结果中。
[
{
"SUM(producFinalPrice)": 6000
}
]
我的路由器从我的数据库中获取数据。
router.get('/sell/home-card-last-sell-compared-to-the-previous-day', function (req, res) {
connection.query('SELECT SUM(producFinalPrice) FROM new_sell',
function (err, lastSellComparedToThePreviousDayCardHome, fields) {
if (err) {
throw err;
}
res.send(lastSellComparedToThePreviousDayCardHome);
}
);
});
`
让我的错误更加清晰,我在AJAX中提出了上一个查询的最终请求;通过这种方式。
$(function () {
$.ajax({
type: "GET",
url: "/sell/home-card-last-sell-compared-to-the-previous-day",
success: function (lastSellComparedToThePreviousDayCardHome) {
var $lastSellComparedPreviousDay = $('#last-sell-compared-to-the-previous-day');
$.each(lastSellComparedToThePreviousDayCardHome, function (i, SellPreviousDay) {
$lastSellComparedPreviousDay.append('<li>R$ ' + SellPreviousDay.producFinalPrice + '.</li>');
});
console.log('Sucess return to Last Sell Previous Day!', lastSellComparedToThePreviousDayCardHome);
}
});
});
基本上,我找不到任何可以帮助我的东西...... 谢谢你帮助我;]
答案 0 :(得分:1)
使用别名:
connection.query('SELECT SUM(producFinalPrice) AS productFinalSum FROM new_sell', ...
^^^^^^^^
然后,当您在节点中解析JSON时,检查productFinalSum
密钥。实际上,我认为您甚至可以使用SUM(productFinalSum)
来访问您的JSON,但它看起来很尴尬。