Jquery json:未捕获TypeError:无法读取未定义的属性'xx'

时间:2013-12-08 13:44:00

标签: javascript jquery json

我正在通过JSON检索数据,但问题是我收到错误“无法读取未定义的属性'productid'。

JSON文件(data.json)

{
    "Products": [
        {
            "productid": "135",
            "productname": "Shirt",
            "productqty": "3",
            "seller_3": "150.00",
            "seller_2": "151.00",
            "seller_7": "153.00",
            "seller_6": "159.00",
            "seller_5": "155.00",
            "seller_1": "157.00",
            "seller_4": "152.00"
        }
    ]
}

执行代码是

var itemQty = 134;
$.getJSON( "../data.json", function(data) {
    if (data.Products.length == 0) {
        /*do nothing*/
    } else if(data.Products.length > 0){
        for (var i = 0; i < data.Products.length; i++) {
            console.log(data.Products[i].productid); // ITS RETURN THE VALUE 135
            if (data.Products[i].productid == itemID) { // <--- ERROR THIS LINE
                if (data.Products[i].productqty == itemQty) {
                    newQuantity = eval(data.Products[i].productqty);
                } else {
                    var newQuantity = eval(itemQty);
                }
                if (newQuantity > options.quantityLimit) {
                    newQuantity = options.quantityLimit
                }
                data.Products[i].productqty = newQuantity;
            } else {
                data.Products.push(cartItem);
            }
        }
    }
}

在console.log中,它返回的值为135,在IF语句中进行比较时,我收到错误无法读取未定义属性'productid'。

1 个答案:

答案 0 :(得分:2)

看起来您正在从循环内部修改产品列表。因此,请仔细查看为cartItem设置值的任何内容。

  for (var i = 0; i < data.Products.length; i++) {
    ...
    data.Products.push(cartItem);
  }

在迭代时将新项添加到列表中是一个坏主意。根据{{​​1}}和itemID的设置方式,您可能会有无限循环。 尝试在开始循环之前读取cartItem值一次,这样就不会迭代新项目了:

.length