我正在尝试使用此代码显示mysql表中的特定数据。我介于使用for循环之间,但它说res
或response
未定义。我需要在下面编辑或更改我的代码吗?
function lowInventory() {
console.log("View all product that are low in inventory...\n");
for (var i = 0; i < response.length; i++) {
connection.query("SELECT stock_quantity (*) FROM products WHERE stock_quantity < 5", function (err, res) {
if (err) throw err;
//log all results of the SELECT statement
console.table(Response);
connection.end();
});
}
}
我需要它在我的表中的node.js中显示数量小于5的结果。
答案 0 :(得分:0)
将console.table(Response)改成console.log(Response)