我在node.js(express)应用程序中使用请求模块。有时会发生与此statusCode相关的错误:

TypeError: Cannot read property
'statusCode' of undefined at Request._callback


这是我的整个代码:

request("https://www.googleapis.com/youtube/v3/search?part=snippet&q=" + docs[0].title + "&type=video&key=(some-key-variable)", {
                json: true
              }, function(error, response, resultData) {
                var yArr = [];
                if (!error || response.statusCode == 200) {
                  for (var i = 0; i < config.youtubeVideoCount; i++) {
                    var vArr = resultData.items[i];
                    yArr.push(vArr);
                  }
                } else {
                  console.log("can't find video");
                }
              });


response.statusCode有时会出错。如何控制请求成功?是请求模块中的错误吗?为什么有时未定义statusCode?我认为statusCode应该每次都可用。

回答
可能是响应超时问题,您应该执行如下if语句;

if (response === undefined || response.statusCode != 200){ console.log("there is a prob"); }


该代码首先控制响应变量,然后控制response.statuscode,因此,如果未定义的响应不控制response.statusCode,我们将不会得到任何错误。

最佳答案

这是一种解决方法,因为responseundefined可能有多个原因:

if (!error && response.statusCode == 200) {
    // do your stuff here..
}

关于node.js - HTTP statusCode有时未定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50318358/

10-11 13:39