HI,
У меня установлен набор возвращаемого объекта JSON.
{
"word":[
"offered",
"postings"
],
"annotation":[
["offered highlighted","this is also given as annotation","This annotation has been added here currently","offering new annotation points","\"offered\" is in the sense of languages"],
["my postings","this is new annotation for postings.","my postings","this is posting annotation.... Working for the feature of the annotation."]
],
"user":[
["","","vinoth","Anonymous","Vinoth"],
["Anonymous","vinoth","Anonymous","Arputharaj"]
],
"id":[
["58","60","61","63","68"],
["32","57","59","62"]
],
"comment":
{
"id58":["first comment","This is a old comment for this annotation","Next level of commenting.","Fourth comment to this annotation","testing"],
"id61":["this is an old annotation.\r\nMy comment is very bad about this.","Second comment to this annotation"],
"id57":["I want to add one more comment to this"]
},
"commentUser":{
"id58":["vinoth","Anonymous","Vinothkumar","Vinothkumar","vinoth"],
"id61":["Anonymous","Commentor"],
"id57":["vinoth"]
}
}
Я хочу знать длину каждого объекта и массива.
Я использовал .length
, чтобы получить длину annotation[0].length
.Я получаю ожидаемый результат, то есть: 5. То же самое относится к «user» & «id».
Но я не получаю длины «word», «id58», «id61»,и т.д. ... Также я хочу узнать о длине comment
& commentUser
.
Пожалуйста, помогите мне в этом.