我使用点燃的数据表,当add_coloumn
在值
我的控制器add_coloumn
$this->datatables->add_column('acces', "$1", $this->custom_value('acces'));
我的回调函数
public function custom_value($val){
// value a
if ($val === 'a') {
return 'Sending By Admin';
}
else{
return 'Sending By member';
}
}
成功但价值始终在Sending By member
我尝试过datatables列渲染
脚本
'columns': [
{"data": "acces",
"render": function ( data, type, row ) {
if(data === 'a'){
return 'Sending By Admin';
}
else{
return 'Sending By Member';
}
}
}
]
成功,但价值始终在Sending By member
在我的数据库表中有3个值acces
1 = m,2 = a