所以,我想得到一个对象属性的长度,它是一个对象数组的属性。
我希望获得actionDetails
的长度。
我尝试了以下内容:message[0].actionDetails[0].length;
但这导致未定义。
数据如下:
message= [
{
"data":"1",
"actionDetails":[
{
"type":"action",
"url":"http:\/\/localhost\/app\/dashboard"
},
{
"type":"action",
"url":"http:\/\/localhost\/app\/dashboard"
},
{
"type":"action",
"url":"http:\/\/localhost\/app\/dashboard"
}
]
答案 0 :(得分:1)
我尝试了以下内容:message [0] .actionDetails [0] .length;但这是 导致未定义。
几乎在那里,你不需要首先获得你所寻找长度的0
数组索引
message[0].actionDetails.length;