|
@@ -27,6 +27,12 @@ public class ResultHandle {
|
|
|
int count = t.getRoot().getResults().getCount();
|
|
|
if(count>0){
|
|
|
String result = t.getRoot().getResults().getResult();
|
|
|
+ if(count==1){
|
|
|
+ com.alibaba.fastjson.JSONObject object = JSON.parseObject(result);
|
|
|
+ JSONArray jsonArray = new JSONArray();
|
|
|
+ jsonArray.add(object);
|
|
|
+ return jsonArray;
|
|
|
+ }
|
|
|
JSONArray jsonArray = JSON.parseArray(result);
|
|
|
|
|
|
return jsonArray;
|