0

我使用了 yoeran 创建的codeigniter relative_time 助手。在 ajax 帖子中,我调用控制器中的函数以返回相对时间和管理员名称。但相对时间总是返回 null。助手不是在 ajax 帖子中调用吗?

这是我的ajax代码:

$.ajax({
        type: "POST"
        , url: baseurl +"admin/get_last_change/document"
        , dataType: "json"
        , data: {
            id: $(".page-heading small").attr('data-document-id')
        }
        , success: function (result) {
            $('#last-change').html(result.data);
            console.log(result.data);
        }
    });

这是我在控制器中的功能:

function get_last_change($keyword){
        $id = $_POST['id'];
        $where = array('target_id' => $id);
        if($keyword == 'document'){
            $result = $this->Admin_Model->get_task_admin(12, $where);
            $admin_name = $result->row('admin_account_name');
            $last_change = relative_time($result->row('created_at'));
            $data = "Last Change : ".$last_change." by <span class='text-primary'>".$admin_name."</span>";   
            $output = array('data' => $data);
        }
        echo json_encode($output);
    }

$result 的结果:

{"id":"12","created_at":"2016-05-17 09:52:14","admin_account_name":"Ibnu Habibie","task_name":"Add Content"}
4

0 回答 0