2

data是一个Json数据数组,每个对象的结构是:

var data = [
{
    id: 0, 
    img: "image_src", 
    width: 107, 
    height: 80, 
    shadowBoxLink: "....",
    th: {
        width: 107,
        height: 70, 
        img: "src"
    }
},
{
    id: 1, 
    img: "image_src", 
    width: 107, 
    height: 80, 
    shadowBoxLink: "....",
    th: {
        width: 107,
        height: 80, 
        img: "src"
    }
}
];

当我尝试在循环中访问数组(仅在 IE8、IE7 中发生)时:

for(var i in data) {
    var imgHeight = data[i].th.height;
}

我收到一条错误消息:“无法获得“高度”的属性,引用为空或未定义”

(我从法语翻译了消息:Impossible d'obtenir la propriété « height » d'une référence null ou non définie)

我究竟做错了什么?

4

3 回答 3

8

访问数组元素可以更语义化地完成,如下所示:

for(var i = 0, n = data.length; i < n; i ++) {
    var imgHeight = data[i].th.height;
    ...
}

for..in循环旨在与基于键的对象一起使用。

注意:您的对象中还缺少一个结束引号:

th: Object {
   width: 107,
   height: 80, 
   img: "src /* NEED A CLOSING " HERE */
}
于 2013-03-20T11:28:57.217 回答
2

看来您正在寻找不存在的物业

做一个简单的测试:

for(var i in data) {
  if(data[i] && data[i].th && data[i].th.height){
    console.log('the property exists');
  }else{
    console.log("no, it doesn't")
  }      
}
于 2013-03-20T11:32:41.767 回答
0

有一个对象数组。

因此,使用 for 并获取所需对象的属性。

给定代码中存在语法错误。用引号关闭字符串。

示例代码在这里。

var data = [
    {
        id: 0, 
        img: "image_src1", 
        width: 107, 
        height: 80, 
        shadowBoxLink: "....",
        th: {
            width: 107,
            height: 70, 
            img: "src"
        }
    },
    {
        id: 1, 
        img: "image_src2", 
        width: 107, 
        height: 80, 
        shadowBoxLink: "....",
        th: {
            width: 107,
            height: 40, 
            img: "src"
        }
    }
];

for(var i=0; i<data.length; i++) {
    var imgHeight = data[i].th.height;
    alert(imgHeight);
}            
于 2013-03-20T11:35:40.630 回答