0

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

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

1 回答 1

1

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

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;

于 2015-05-26T21:26:22.273 回答