在NodeJ中使用异步等待和mariadb查询的正确方法是什么?

时间:2017-07-22 19:40:00

标签: node.js express asynchronous mariadb mariasql

我是async / await的新手。

我正在尝试使用异步和等待,但查询没有等待,它最后发生并且页面在查询之前呈现,因此我无法在呈现的页面上获得正确的答案。

以下是使用async await之前的代码

orderMiddleware.newOrder = function (req, res) {
    var total = 0
    var curr_total = 0
    // get items from cart
    c.query('select * from cart where user_id=:userId',
        { userId: req.user.ID }, function (err, cart) {
            if (err) {
                console.log(err)
            } else {
                cart.forEach(function (item) {
                    // Find item from DB and check their price
                    c.query('select * from products where id=:id',
                        { id: item.item_id },
                        function (err, foundItem) {
                            if (err) {
                                console.log(err)
                            } else {
                                curr_total = foundItem[0].price * item.quantity
                                console.log("currenttotal" + curr_total)
                                total += curr_total
                                console.log(total)
                            }
                        })
                })
                console.log(total)
                console.log(curr_total)
                // Calculate total price
                // Multiply all items with their quantity
                res.render('orders/new', { cart: cart, total: total })
            }
        })
}

然而,这不能正常工作。 console.log(total)在查询之前发生,因此结果为零,并且在呈现的页面中呈现零。 如果我使用异步,也会发生同样的事情。我使用它错了吗?

使用async await-

之后
orderMiddleware.newOrder = async (req, res) => {
    var total = 0
    var curr_total = 0
    // get items from cart
   var A=  c.query('select * from cart where user_id=:userId',
        { userId: req.user.ID }, async (err, cart) => {
            if (err) {
                console.log(err)
            } else {
                 cart.forEach(async (item) => {
                    // Find item from DB and check their price
                    await c.query('select * from products where id=:id',
                        { id: item.item_id },
                        async (err, foundItem) =>{
                            if (err) {
                                console.log(err)
                            } else {
                                curr_total = foundItem[0].price * item.quantity
                                console.log("currenttotal" + curr_total)
                                total += curr_total
                                console.log(total)
                            }
                        })
                })
                await console.log(total)
                // await console.log(curr_total)
                // Calculate total price
                // Multiply all items with their quantity
                await res.render('orders/new', { cart: cart, total: total })
            }
        })
}

我试过没有使用像:

这样的回调
var A=  c.query('select * from cart where user_id=:userId',
        { userId: req.user.ID })

但是我怎样才能得到查询的输出? console.log(A)显示不同的结果。

3 个答案:

答案 0 :(得分:4)

你不能因为这些功能不会返回承诺。您可以使用三部分库(例如es6-promisify宣传这些功能,或者您可以自己包装这些功能。

一旦函数返回Promise,你可以等待它。

例如,对于上述情况,解决方案可能如下:

const execQuery = (sql, params) => new Promise((resolve, reject) => {
  query(sql, params, (error, data) => {
    if (error) {
      reject(error);
    } else {
      resolve(data);
    }
  });
});

const logCartItem = async (userId) => {
  try {
    const items = await execQuery('select * from cart where user_id=:userId', { userId });
    items.forEach(console.log);
  } catch (error) {
    console.error(error);
  }
};

答案 1 :(得分:1)

假设您正在使用node-mariasql包。简短的回答是,您无法使用async/await,因为包does not support Promises

答案 2 :(得分:0)

使用node-mariasql,可以轻松使用promisify

const util = require('util')

const asyncQuery = util.promisify(c.query);

const rows = await asyncQuery.call(c, 'SELECT product FROM products WHERE id = :id', { id }, { useArray: false, metaData: false })