DataTables warning: table id=day_plan_table - Requested unknown parameter 'planName' for row 0, column 1. For more information about this error, please see http://datatables.net/tn/4
在做 jquery data table demo的时候,出现如上的警告,出现此警告的原因是数据库里面存在空值,而我们后台没有对空值做处理,导致传过来的值为 null
这个时候,我们只需要对查询的值做一下判断即可:
d.setPlanDetail(rs.getString("plan_detail"));
//改成
d.setPlanDetail(rs.getString("plan_detail")==null?"":rs.getString("plan_detail"));
如果为 null 就设置为 ""
这样就不会报错啦
最后,看看效果,过来,前台正常显示: