AJAX的成功无法将数据填充到表HTML中

时间:2015-02-19 15:47:45

标签: javascript php mysql ajax codeigniter

我使用ajax过滤表上的数据。但是当成功通话时,数据没有显示在桌面上。桌子上的数据消失了。

这是我的脚本代码:

$(document).ready(function() {
    $("#inputJenis").change(function() {
        var key = $(this).val();
        var jenis_semester = 'key=' + key;
        $.ajax({
            type: "POST",
            url: '<?php echo base_url("search/filter") ?>',
            data: jenis_semester,
            dataType: 'json',
            success: function(data) {
                $('table tbody').html(data);
            },
            error: function(XMLHttpRequest) {
                alert(XMLHttpRequest.responseText);
            }
        });
    });
});

这是我的控制者:

public function filter()
    {
        $this->load->helper('url');

        $key = $this->input->post('key');

        if ( $key == 'Ganjil' ) {
            $this->load->model('filter_model', 'filter');
            $data['semester'] = $this->filter->getGanjil($key);
        } else {
            $this->load->model('filter_model', 'filter');
            $data['semester'] = $this->filter->getGenap($key);
        }
        $this->load->view('tambah_semester', $data);

        echo json_encode($data);
    }

这是我的模特:

public function getGanjil($key)
    {

        $sql = "SELECT * FROM tahunajaran WHERE jenis = 'Ganjil'";
        $data = $this->db->query($sql);
        $index = 1;
        foreach ($data->result() as $row) {
            $dataSemester[$index] = array('id_tahun_ajaran' =>$row->id_tahun_ajaran,
                            'awal_semester' =>$row->awal_semester ,
                            'akhir_semester'=> $row->akhir_semester,
                            'tahun_ajaran'=>$row->tahun_ajaran,
                            'jenis'=>$row->jenis,
                            'nama_semester'=>$row->nama_semester );
            $index++;
        }
        return $dataSemester;
    }

    public function getGenap($key)
    {

        $sql = "SELECT * FROM tahunajaran WHERE jenis = 'Genap'";
        $data = $this->db->query($sql);
        $index = 1;
        foreach ($data->result() as $row) {
            $dataSemester[$index] = array('id_tahun_ajaran' =>$row->id_tahun_ajaran,
                            'awal_semester' =>$row->awal_semester ,
                            'akhir_semester'=> $row->akhir_semester,
                            'tahun_ajaran'=>$row->tahun_ajaran,
                            'jenis'=>$row->jenis,
                            'nama_semester'=>$row->nama_semester );
            $index++;
        }
        return $dataSemester;
    }

我想在表HTML上显示数据

<table class="footable table table-striped" data-page-size="10">
    <thead>
        <tr>
            <td id="colNomer">Id</td>
            <td id="colNama">Nama</td>
            <td id="colTanggal">Awal semester</td>
            <td id="colTanggal">Akhir semester</td>
            <td id="colTanggal">Tahun ajaran</td>
            <td id="colNama">Jenis</td>
            <td id="colAksi">Aksi</td>
        </tr>
    </thead>
    <tbody>

    </tbody>
</table>

我们可以在成功调用ajax上填写表格。这是图 enter image description here 数据无法填入表格

enter image description here

1 个答案:

答案 0 :(得分:2)

我会分离你的控制器方法,一个用于AJAX调用,另一个用于普通视图,如下所示:

public function doFilter($key) {
    $this->load->helper('url');
    $this->load->model('filter_model', 'filter');
    if ($key == 'Ganjil') {
        $data['semester'] = $this->filter->getGanjil($key);
    } else {
        $data['semester'] = $this->filter->getGenap($key);
    }
    return $data;
}

public function getFilterJson() {
    $key = $this->input->post('key');
    $data = $this->doFilter($key);
    echo json_encode($data);
}

public function filter() {
    $key = $this->input->post('key');
    $data = $this->doFilter($key);
    $this->load->view('tambah_semester', $data);
}

你还需要将一个对象传递给你的AJAX调用并添加我们在控制器中创建的新URL,我也会使用jquery的$.post(),所以改变你的JS就像这样:

$(document).ready(function() {
    $("#inputJenis").change(function() {
        $('table tbody').empty();//this will make sure the table is empty first
        var key = $(this).val();
        var postdata = {key: key};
        var url = '<?php echo base_url("search/getFilterJson") ?>';
        $.post(url, postdata, function(result) {
            console.log(result);
            if (result) {
                var obj = JSON.parse(result);
                $.each(obj, function(key, line) {
                    var elem = '<tr>\n\
                                    <td>' + line.id + '</td>\n\
                                    <td>' + line.Nama + '</td>\n\
                                    <td>' + line.Awal + '</td>\n\
                                    <td>' + line.Akhir + '</td>\n\
                                    <td>' + line.Tahun + '</td>\n\
                                    <td>' + line.Jenis + '</td>\n\
                                    <td>' + line.Aksi + '</td>\n\
                                </tr>';
                    $('table tbody').append(elem);
                 });
            } else {
                //your error code
            }
        });
    });
});

而你的模型,有太多的事情发生了。您应该使用Codeigniter的功能,如下所示:

public function getGanjil($key) {
    $this->db->select("*");
    $this->db->from("tahunajaran");
    $this->db->where("jenis", "Ganjil");
    $data = $this->db->get();
    return $data->result_array();
}

public function getGenap($key) {
    $this->db->select("*");
    $this->db->from("tahunajaran");
    $this->db->where("jenis", "Genap");
    $data = $this->db->get();
    return $data->result_array();
}