SQL查询导致UnhandledPromiseRejectionWarning:ReferenceError:响应未定义

时间:2019-06-01 15:52:55

标签: mysql sql node.js

我正在尝试使用此代码显示mysql表中的特定数据。我介于使用for循环之间,但它说resresponse未定义。我需要在下面编辑或更改我的代码吗?

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的结果。

1 个答案:

答案 0 :(得分:0)

将console.table(Response)改成console.log(Response)