我正在使用jQuery DataTables。目前,当我这样做时,这是有效的:
{ "data": "case" }
但是当我这样做时:
{
"data": "case",
"render": function(data){
if (data == "true"){
return "<i class='fa fa-check-square-o'></i>";
}
}
}
它给我弹出错误说:
数据表警告:table id = peacecard - 请求的未知参数&#39; case&#39;第1行 有关此错误的更多信息,请 见http://datatables.net/tn/4
关闭弹出窗口后,数据会正确呈现,但无法清除警告。
答案 0 :(得分:1)
尽管情况如此,您仍需要在columns.render
函数中返回值。
{
"data": "case",
"render": function(data, type, row, meta){
if (data == "true"){
data = "<i class='fa fa-check-square-o'></i>";
} else {
data = "";
}
return data;
}
}