JSONArray为数组。跟之前的不同,不是下面有JSONObject 再是key value
if (!(recall_list.getJSONObject(0).toString()).equals("homecard_fm_recall")) {
改为get(0)
if (!(recall_list.get(0).toString()).equals("homecard_fm_recall")) {
JSONArray为数组。跟之前的不同,不是下面有JSONObject 再是key value
if (!(recall_list.getJSONObject(0).toString()).equals("homecard_fm_recall")) {
改为get(0)
if (!(recall_list.get(0).toString()).equals("homecard_fm_recall")) {
相关文章: