Traversing through deeply nested JSON object
问题 When interacting with an API used for building forms, I make an API call to get all the response values associated with my form. The API returns a deeply nested JSON object with all my form values. One of the many response objects looks like this: { "title":{ "plain":"Send Money" }, "fieldset":[ { "label":{ "plain":"Personal Info Section" }, "fieldset":[ { "field":[ { "label":{ "plain":"First Name" }, "value":{ "plain":"Bob" }, "id":"a_1" }, { "label":{ "plain":"Last Name" }, "value":{ "plain