Live search using Codeigniter Mysql

2019-05-29 03:44发布

问题:

I am doing a project on Live Search Using Jquery Ajax, Php Codeigniter and Mysql

Here is my model Code:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Subjectmodel extends CI_Model {
   public function __construct() {
        parent::__construct();

    }
    function getSubject($search){
        $this->db->select("SUB_ID,NAME");
        $whereCondition = array('NAME' =>$search);
        $this->db->where($whereCondition);
        $this->db->from('ix08s_subjects');
        $query = $this->db->get();
        return $query->result();
    }
}
?>

Here is my controller code:

<?php
class Subject extends CI_Controller {
    function __construct() {
        parent::__construct();
        $this->load->model('SubjectModel');
    }
    public function index(){
        $search=  $this->input->post('search');
        $query = $this->SubjectModel->getSubject($search);
        echo json_encode ($query);
    }
}
?>

and this is my view code :

<html>
<head>
<script type="text/javascript" language="javascript" src="http://somexyz/js/javascripts/plugin/jquery.js"></script>
<script type="text/javascript" src="http://somexyz/js/javascripts/plugin/json2.js"></script>
<script>
    $(document).ready(function(){
      $("#search").keyup(function(){
        if($("#search").val().length>3){
        $.ajax({
            type: "post",
            url: "http://localhost/ibps/index.php/subject",
            cache: false,               
            data:'search='+$("#search").val(),
            success: function(response){
                $('#finalResult').html("");
                var obj = JSON.parse(response);
                if(obj.length>0){
                    try{
                        var items=[];   
                        $.each(obj, function(i,val){                                            
                            items.push($('<li/>').text(val.NAME));
                        }); 
                        $('#finalResult').append.apply($('#finalResult'), items);
                    }catch(e) {     
                        alert('Exception while request..');
                    }       
                }else{
                    $('#finalResult').html($('<li/>').text("No Data Found"));       
                }       

            },
            error: function(){                      
                alert('Error while request..');
            }
        });
        }
        return false;
      });
    });
</script>
</head>
<body>
<div id="container">
<input type="text" name="search" id="search" />
<ul id="finalResult"></ul>
</div>
</body>
</html>

This is my output :

[{"SUB_ID":"1","NAME":"physics"},{"SUB_ID":"2","NAME":"physics"}]

But This should be the correct output

http://jsfiddle.net/serigo1990/uShzQ/

Got the answer

回答1:

Add dataType: 'json' to ajax settings



回答2:

==View page==

  <select class="itemName form-control"  name="itemName"></select>
  <input type="submit" name="search"  value="search" >




  $('.itemName').select2({
    ajax: {
      url: '<?php echo base_url(); ?>/Controller_name/search',
      dataType: 'json',
      processResults: function (data) {
       return {
          results: data
        };
      },
      cache: true
    }
  });

              ==Controller==
function search(){
    $this->load->database();
    $this->db->like('field_name', $this->input->get("q"));
    $this->db->select('id,field_name as text');
    $this->db->from('software');
    $res = $this->db->get()->result_array();
    echo json_encode($res);
}