我试图做一个if语句,我需要确定嵌套数组是否有一个数组。我需要计算的是removeByNames内部的对象。我正在使用angularJS和linq.js。效率更高。

[{
    "style":"smooth",
    "color":"blue",
    "data":[[600,40000]],
    "name":"Subject Property",
    "removeByNames":[["Product1"]],
    "$$hashKey":"object:30"
}]

最佳答案

您可以使用数组访问和点表示法。



var jsoN = [{"style":"smooth","color":"blue","data":[[600,40000]],"name":"Subject Property","removeByNames":[["Product1"]],"$$hashKey":"object:30"}];

jsoN[0].removeByNames.length;
/* or */
jsoN[0]['removeByNames'].length;

10-06 11:28