将变量传递给javascript,codeigniter

时间:2015-10-14 06:56:13

标签: javascript php ajax codeigniter datatables

我无法将Codeigniter视图中的变量传递给控制器​​,然后模型会发送从数据库中获取数据所需的查询。

这是我的Controller(代码段):

public function read() {
        echo json_encode( $this->random_model->getAll() );
}

型号:

 public function getAll() {

    $id = $this->input->post('id');
            $id = intval( $id );
   // print_r($sg_id);

  //  var_dump($sg_id);


    $query = $this->db->where('id',$id)->limit( 100 )->get( 'table_name' );



    if( $query->num_rows() > 0 ) {
        return $query->result();
    } else {
        return array();
    }
}

我从另一个函数发送“$ id”:

function test1()
{

    $blaa['id'] = $this->input->post('id');

    if ($query = $this->model_name->getAll($blaa)) 
    {
        $blaa['records'] = $query;
    }

    //$this->model_name->getAll($blaa);
    $this->load->view('view_name', $blaa);

}

这是test1视图:

<?php $attributes = array("class" => "", "id" => "", "name" => "");

   echo form_open("test/test1/", $attributes);?>

<input type="text" id="id" name="id" >

<?php echo form_submit('submit', 'Submit')?>

    <?php echo form_close(); ?>

这是显示所有数据的view_name,我正在使用dataTables。:

在view_name(读取数据片段)中呈现的All.js:

var readUrl   = 'index.php/controller_name/read'

function readUsers() {
//display ajax loader animation
$( '#ajaxLoadAni' ).fadeIn( 'slow' );

$.ajax({
    url: readUrl,
    dataType: 'json',
    success: function( response ) {

        for( var i in response ) {
            response[ i ].updateLink = updateUrl + '/' + response[ i ].id;
            response[ i ].deleteLink = delUrl + '/' + response[ i ].id;
        }

        //clear old rows
        $( '#records > tbody' ).html( '' );

        //append new rows
        $( '#readTemplate' ).render( response ).appendTo( "#records > tbody" );

        //apply dataTable to #records table and save its object in dataTable variable
        if( typeof dataTable == 'undefined' )
            dataTable = $( '#records' ).dataTable({"bJQueryUI": true});

        //hide ajax loader animation here...
        $( '#ajaxLoadAni' ).fadeOut( 'slow' );
    }
});

我得到的结果只是id为“0”的数据,无论我通过测试控制器发送哪个值。

3 个答案:

答案 0 :(得分:0)

在此post中添加您想要的ajax ID,然后您可以在模型或控制器中使用$this->input->post("id");

$.ajax({
    url: readUrl,
     data:{id: id which you want to pass.}
    dataType: 'json',// change this to post
    success: function( response ) {

    }
});

答案 1 :(得分:0)

将您的型号代码更改为:

 public function getAll($id = null) {
    if ($id == null)
        $id = $this->input->post('id');
    $id = intval( $id );
   // print_r($sg_id);

  //  var_dump($sg_id);


    $query = $this->db->where('id',$id)->limit( 100 )->get( 'table_name' );



    if( $query->num_rows() > 0 ) {
        return $query->result();
    } else {
        return array();
    }
}

答案 2 :(得分:0)

试试这个

function getAll(id)
    {

        var id = id;

        $.ajax({
            url:"<?php echo site_url('controllerName/getAll');?>/"+id,
            success:function(data)
            {

            alert(data);

            }

            });
        }


<a href="javascript:void(0)" onclick="getAll(1)"  title="Delete" class="icon-2 info-tooltip">Get All</a>

在你的控制器中尝试像这样获取id

public function getAll($id)
{

  echo $id;
}

了解更多信息:http://w3code.in/2015/10/how-to-edit-delete-and-update-data-without-refreshing-page-in-codeigniter/