layui表格模板重复数据为undefined的问题
Posted tyulbky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layui表格模板重复数据为undefined的问题相关的知识,希望对你有一定的参考价值。
引用自: https://www.cnblogs.com/rx124/p/10920962.html
layui表格中使用模板时需要注意
{field:‘user‘,title: ‘出卷人‘, sort: true, templet:function(d){return ‘<div>‘+d.user.username+‘</div>‘}}
在后台设置表格的json数据时,需要先把数据对象转为Object类型,否则出现重复对象时会出现 $ref 导致数据为空
JSONObject jsonObject = new JSONObject(); Object objData = JSONObject.toJSON(数据); jsonObject.put("code", 0); jsonObject.put("msg", ""); jsonObject.put("count", p.size()); jsonObject.put("data", objData); response.getWriter().print(jsonObject.toString());
以上是关于layui表格模板重复数据为undefined的问题的主要内容,如果未能解决你的问题,请参考以下文章