如果数据不起作用,则为codeigniter

时间:2018-03-07 06:21:11

标签: json codeigniter datatables

我使用点燃的数据表,当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

0 个答案:

没有答案