dtra49684 2015-06-24 01:49
浏览 26
已采纳

如何从PHP中提取AJAX的部分响应

Need some help here, i've been searching for related issues here but nothing seems to answer my problem. Ok so here how it goes

I have a simple search function that search through my database and I used an ajax to pass the data and get back the response and I manage to do that but my problem is that I can't seem to display the response the way I wanted to.

Here's my Ajax

$.ajax({
    url: url, /// defined url
    type: type, ///defined type
    data: data, ///defined data
    success: function(response){
    //here I want to display something like
         $('#display').html(the name of the employee);
    }
});

Here's the ajax response

{
    "employee": [{
    "badgeno": "123                ",
    "name": "John G. Doe",
    "success": true
}]
}
{
    "employee": [{
    "badgeno": "456                ",
    "name": "Jane G. Doe",
    "success": true
 }

I want to get the employee Name in there and display it in my page. How exactly am I gonna do that?

Thanks in advance. I'm still a newbie BTW

Here's the PHP

 $getEmp = $this->Employee_model->search_emp($employee);
    $count = count($getEmp);

    if($getEmp){
        for ($i=0; $i < $count; $i++) { 
            $data['employee'][$i] = array(
                'badgeno' => $getEmp[$i]->BADGENO,
                'name' => $getEmp[$i]->NAME,
                'success' => true
            );
            echo json_encode($data);
        }
        print_r($data);

        //$this->load->view('admin/home', $data);
    }
  • 写回答

2条回答 默认 最新

  • doufangyan6862 2015-06-24 01:53
    关注

    Try:

    employee_name= data.employee[0].name;
    $('#display').html(employee_name);
    

    Link to fiffle: https://jsfiddle.net/fcz53htw/ If you have more then one name, first add them to array, only then print then json_encode of the array. Now its wont wont work because you printing twice. Try change your php to this:

    $getEmp = $this->Employee_model->search_emp($employee);
    $count = count($getEmp);
    
    if($getEmp){
        for ($i=0; $i < $count; $i++) { 
            $data['employee'][$i] = array(
                'badgeno' => $getEmp[$i]->BADGENO,
                'name' => $getEmp[$i]->NAME,
                'success' => true
            );
            //echo json_encode($data);
        }
        echo json_encode($data);
    
        //$this->load->view('admin/home', $data);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 组策略中的计算机配置策略无法下发
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题