JSONオブジェクトに要素を追加します。JSONオブジェクトに要素を追加する
{"email":"[email protected]",
"password":"utheu",
"meta":
{
"screen_resolution":
{
"height":1080,
"width":1920
}
上記はパラメータです。 JSON Objectに電子メール、パスワード、メタ要素を追加したいと思います。メールとパスワードを追加できましたが、メタ要素を追加できませんでした。
しかし、これが無効なJSONオブジェクトである理由は、オブジェクトの最後にいくつかの閉じ括弧がないことです。 "screen_resolution"プロパティは閉じますが、 "meta"オブジェクトは閉じません。 {"email": "[email protected]"、 "password": "utheu"、 "meta":{"screen_resolution":{"height":あなたはオブジェクトを閉じるために別の閉じ括弧が必要です。 1080、 "width":1920}}} – Andrew