修改小程序接口
This commit is contained in:
parent
a832eadd66
commit
74b2574886
|
@ -122,7 +122,11 @@ public class WechatController extends BaseController {
|
|||
JSONArray array1 = new JSONArray();
|
||||
list1.forEach(l->{
|
||||
JSONObject object1 = new JSONObject();
|
||||
object1.put("text",l.getDetailed().substring(0,18)+"...");
|
||||
if (l.getDetailed().length()>18){
|
||||
object1.put("text",l.getDetailed().substring(0,18)+"...");
|
||||
}else {
|
||||
object1.put("text",l.getDetailed());
|
||||
}
|
||||
object1.put("id",l.getId());
|
||||
object1.put("shotName",l.getShotName());
|
||||
array1.add(object1);
|
||||
|
|
Loading…
Reference in New Issue