嵌套的axios调用卡在节点服务器中

时间:2018-10-09 16:36:52

标签: node.js axios

我在节点服务器中添加了一个中间件,如下所示:

var middleware = function(req, res, next) {
    var path = req.path;
       methodReturningAxiospost()
          .then(function(accesstoken) {
            return methodReturningAxiosGetWithconsoleLog()
          })
          .catch(function(error) {
            console.error("Caught error in login callback ", error);
            res.status = 500;
            res.send("Something went wrong");
          });
  };

我的问题是第二个axios调用永远不会执行。该方法运行良好,就像我在调用之前进行控制台日志一样。我分别尝试了两个axios调用,它们都可以正常工作。怎么了

详细信息:Debian 9机器[请注意,这可在我的mac机器上使用!!

节点8.4.0 axios 0.18.0

0 个答案:

没有答案