fastjson:转换对象包含了泛型
参照官方的方法:
String jsonStr = "[{\"id\":1001,\"name\":\"Jobs\"}]"; List<Model> models = JSON.parseObject(jsonStr, new TypeReference<List<Model>>() {});
在分页组件MyPageInfo中使用:
MyPageInfo<EntityBaseLogAudit> myPageInfo = JSON.parseObject(strPostResult, new TypeReference<MyPageInfo<EntityBaseLogAudit>>() { });
本文来自博客园,作者:huiy_小溪,转载请注明原文链接:https://www.cnblogs.com/huiy/p/16661708.html