原文:https://blog.csdn.net/hero_rong/article/details/84098690
数组取值:
arr[ i ] //i为数组下标,一般从0开始
对象取值:
若对象格式为{name:" ",other:" "} , 即key值固定,value不同,取值为 obj.name obj.other
若对象格式为{name1: " ",name2:" ",name3: ' '}, 即key值为变量,取值为obj['name1'] obj['name2']
数组嵌套对象取值:
[{name:" ",other:" "},{name:" ",other:" "}] ,取值为 arr[i].name arr[i].other
例子:
对象嵌套数组取值:
{name1: [xxx,xxx ],name2:[ xxx,xxx],name3: [ xxx,xxx]} 取值为 obj.name1[1] obj['name1'] [1]
例子:
第一种:obj.下标
第二种:obj[下标]