0

我正在制作一个 Node-js 应用程序,该应用程序需要在进行另一个 db-call 之前从数据库中查找一些信息,但我似乎无法确保在继续之前第一次检查已解决。如何确保在继续之前始终完成第一个查询?我试过嵌套.next,但它们似乎无论如何都在跳过。因此,在第一次 DB 调用之后,我想检查返回的值,但它始终未定义。

我的异步功能:

async function GetStuff(text, id){
  try {
    return await db.query(text, id);
   } catch(error) {
      console.log('fel inne: ' + error)
      logger.error('Fel: ' + error)
    return null;
  }
}

我调用该方法的控制器代码,然后尝试使用 .next 等待调用。

router.post('/newStuff', async (req, res) => {

//Check if number exist in DB
const checkUserText = 'select * from public.User WHERE Mobilenumber = $1 limit 1';
const values = [req.body.from];

GetStuff(checkUserText, values)
.then(function(result) {
    var user = result.rows[0];

    //HERE I GET UNDEFINED for some reason. I need to check the result in order to select the next step.
    if(user.userid !== null){
        console.log(user)

    //do some stuff...

  }
  else {
    res.end('Not OK')
  }
}).catch(function(error) {
    console.log('fel: ' + error)
    logger.error('Fel: ' + error)
    res.end('Error')
});

})

4

1 回答 1

1

您可能应该抛出原始错误或新错误,而不是从 GetStuff 返回 null。如果数据库调用出现问题,这将导致触发 GetStuff.catch。

还有一个提示,您的控制器功能是异步的,因此您不需要在控制器代码中使用基于 Promise 的结构。你也可以使用异步/等待。

有了这两个,你最终会得到以下代码:

async function GetStuff(text, id){
    try {
        return await db.query(text, id);
    } catch(error) {
        console.log('fel inne: ' + error)
        logger.error('Fel: ' + error)

        throw new Error('Failed to get db record');
    }
}

router.post('/newStuff', async (req, res) => {
    //Check if number exist in DB
    const checkUserText = 'select * from public.User WHERE Mobilenumber = $1 limit 1';
    const values = [req.body.from];

    let dbResult;
    try {
        dbResult = await GetStuff(checkUserText, values);
    } catch (err) {
        console.log('fel: ' + error)
        logger.error('Fel: ' + error)
        res.sendStatus(500);
    }

    const user = dbResult.rows[0];

    if (user.userid !== null) {
        console.log(user);
    }

    // Do some more things...

    res.sendStatus(200); // All good!
}
于 2018-02-26T17:20:13.217 回答