List转换为JSONArray出错

List<Record> r1=Db.paginate(1, 3, "select *", "from blog where id>=?", 1).getList();

List<Record> r2=Db.paginate(2, 3, "select *", "from blog where id>=?", 1).getList();

String str1=r1.toString();

String str2=r2.toString();

    JSONArray array1=JSONObject.parseArray(str1);

    JSONArray array2=JSONObject.parseArray(str2);

转换成JSONArray出错。

image.png


评论区

flyinkeke

2019-12-03 10:34

String str1=r1.toString(); 改成 String str1=JsonKit.toJson(r1);

热门反馈

扫码入社