如何使用Promise检查错误?

时间:2018-06-26 16:21:09

标签: javascript node.js promise axios

我有来自基于传递的参数的客户端请求,我必须进行两个api调用,以便实现我使用的promise.all。我试图弄清楚我们在第二承诺中是否有错误,您如何在第一承诺中发现错误?

此外,如果在以下情况下有更好的方法来处理承诺,请告知我还很陌生。

controller.ts

export function getQuestions(req: Request, res: Response) {


    const p1 = axios.post('http://localhost:9002/getQuestions', req.body).then(
        function(res1) {
            return res1.data.Details;
        });

    const p2 = axios.post('http://localhost:9002/getNoQuestions', req.body).then(
        function(res2) {
            return res2.data;
        });

    Promise.all([p1, p2])
        .then(function(fullResults) {

            const modifiedResults = fullResults;
            res.json(modifiedResults);

        })
        .catch(function(e) {
            console.log(e)
        });
}

1 个答案:

答案 0 :(得分:1)

catch子句添加到单个的Promise中,而不是依赖Promise.all错误处理

const a = axios.post(...).then(r => r.data.details).catch(e => {
    console.log("error from a: ", e);
});
const b = axios.post(...).then(r -> r.data.details).catch(e => {
    console.log("error from b: ", e);
});

Promise.all([a, b]).then(([aResult, bResult]) => {
   if (aResult && bResult) {
      // do something with results
   }
});