Problem:
Sie haben ein verschachteltes JSON-Ergebnis mit Dynamik Schlüssel wie „141“, „8911“ usw. Sie müssen auf den Inhalt dieser dynamischen Schlüssel zugreifen, z. B. auf die Werte „count“ oder „more_description“.
JSON:
{ "status": "OK", "search_result": [ { "product": "abc", "id": "1132", "question_mark": { "141": { "count": "141", "more_description": "this is abc", "seq": "2" }, "8911": { "count": "8911", "more_desc": "this is cup", "seq": "1" } }, "name": "some name", "description": "This is some product" }, { "product": "XYZ", "id": "1129", "question_mark": { "379": { "count": "379", "more_desc": "this is xyz", "seq": "5" }, "845": { "count": "845", "more_desc": "this is table", "seq": "6" }, "12383": { "count": "12383", "more_desc": "Jumbo", "seq": "4" }, "257258": { "count": "257258", "more_desc": "large", "seq": "1" } }, "name": "some other name", "description": "this is some other product" } ] }
Lösung:
Um auf den Inhalt dynamischer JSON-Schlüssel zuzugreifen, befolgen Sie diese Schritte:
Java-Code:
JSONObject questionMark = searchResult.getJSONObject("question_mark"); Iterator keys = questionMark.keys(); while(keys.hasNext()) { String currentDynamicKey = (String)keys.next(); JSONObject currentDynamicValue = questionMark.getJSONObject(currentDynamicKey); // Access and manipulate the content of the currentDynamicValue... }
Das obige ist der detaillierte Inhalt vonWie greife ich in verschachtelten JSON-Ergebnissen auf dynamische JSON-Schlüssel zu?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!