对象存在但在youtube响应中仍未定义?

时间:2015-08-10 19:33:20

标签: javascript jquery json youtube-api

我在某些Youtube API JS上遇到了一些麻烦。我已经解决了一段时间,我已经用注释注释了我的代码,以便您了解问题所在。我知道他们有几件不同的东西可能是错的。无论如何,谢谢你的帮忙!

   request.execute(function(response) {
      console.log(response.result.items); // Here you get an array of objects.
      var results = response.result;
      console.log(results.items.length);
      var id = results.items.id;
      for (id in results.items) {

      console.log(results.items.id); // And here it is undedfine. When adding video.Id the console says cannot read property videoId of undefined.
      console.log('if you read this the loop works');
  }
   });

1 个答案:

答案 0 :(得分:3)

您正在尝试访问阵列上的id属性,该属性不存在(因此,undefined)。主要问题是JavaScript中的for in用于迭代对象键,而不是数组。使用常规for循环:

request.execute(function (response) {
  var results = response.result;
  for (var i = 0; i < results.length; i++) {
    console.log(results[i]);
  }
});

如果您不需要支持IE8,则可以使用.forEach()

(作为旁注,请使用JavaScript在for in上阅读一下,因为您的用法有点不正确。)