アプリの ajax リクエストによってこの json が返されました。
{"info": {"pat_gender": "f",
"obtained_pmh": true,
"organized": false,
"hpi_selected_alleviating": true,
"greeted_patients": true,
"echoed_patients_words": false,
"allowed_pt_to_finish_thoughts": true,
"grade": "Excellent"
} }
アイテムをループしたいのですが、グループで true フィールドと false フィールドを並べ替えます。
{"info": {
"pat_gender": "f",
//from here GROUP1
"obtained_pmh": true,
"organized": false,
"hpi_selected_alleviating": true,
//GROUP2
"greeted_patients": true,
"echoed_patients_words": false,
"allowed_pt_to_finish_thoughts": true,
"grade": "Excellent"
} }
グループ 1 のフィールドを 2 つのリスト (True と False) に並べ替え、グループ 2 も同じ方法で並べ替えたいと考えています。どうすればこれを行うことができますか?