您向我们展示的是 JSON 对象表示。
在这种情况下,你有一个对象数组,所以如果你下一步:
>>ar=[{"Attribute1":"Apple","Attribute2":"jacob.nelson@cognizant.com"}]
[Object]
这表示您在数组中有一个对象,那么您必须获取它:
>>obj=ar[0]
Object {Attribute1: "Apple", Attribute2: "jacob.nelson@cognizant.com"}
然后,如果您需要替换对象中的某些内容,则必须将它们视为 OBJECTS!
>>ar2=[{"Attribute1":"orange"}]
>>obj2=ar2[0]
>>obj1.Attribute1=obj2.Attribute1
就这样!
提示如果您有很多对象,请遍历它们:
>>objects_array=[
{"Attribute1":"Apple","Attribute2":"jacob.nelson@cognizant.com"},
{"Attribute1":"Cucumber","Attribute2":"asd@qwe.com"}
]
[Object, Object]
>>for obj in objects_array {
obj.Attribute1='Whatever'
}