我在某些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');
}
});
答案 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
上阅读一下,因为您的用法有点不正确。)