我想將元素添加到JSON對象。將元素添加到JSON對象
{"email":"[email protected]",
"password":"utheu",
"meta":
{
"screen_resolution":
{
"height":1080,
"width":1920
}
以上是參數。我想添加電子郵件,密碼和meta元素到JSON對象。我能夠添加電子郵件和密碼,但無法成功添加元素。
同意。但是,這是一個無效的JSON對象的原因是你在對象的末尾丟失了幾個閉合的花括號。您關閉「screen_resolution」屬性,但不關閉「meta」對象。然後你需要另一個右大括號關閉整個對象: {「email」:「[email protected]」,「password」:「utheu」,「meta」:{「screen_resolution」:{「height」 1080, 「寬度」:1920}}} – Andrew 2012-02-16 15:32:30