0

最初の選択ボックスに基づいて2番目の選択ボックスの値を取得する方法について助けが必要です

これはビューです:

$(document).ready(function() {

$('#state').change(function() {
// Get an instance of the select, and it's value.
    var state = $(this),
    stateID = state.val();
// Add if statement to check if the new state id
// is different to the last to prevent loading the same
// data again.

// Do the Ajax request.
$.ajax({
    url : 'http://localhost/ci_ajax/select/get_cities/'+stateID, // Where to.
    dataType : 'json', // Return type.
    success : function(data) { // Success :)
        // Ensure we have data first.
        if(data && data.Cities) {
            // Remove all existing options first.
            state.find('option').remove();
            // Loop through each city in the returned array.
            for(var i = 0; i <= data.Cities.length; i++) {
                // Add the city option.
                state.append($('option').attr({
                    value : data.Cities[i].value
                }).text(data.Cities[i].city));
            }
        }
    },
    error : function() {
        // Do something when an error happens?
    }
});

}); });

<form action="" method="post">
<select name="state" id="state">
    <option>Select</option>
    <?php foreach($states as $row):?>
        <option value="<?php echo $row->id?>"><?php echo $row->states;?></option>
    <?php endforeach;?>
</select>
<select id="cities" name="cities">
    <option>Select</option>
</select>

これはコントローラーです:

class Select extends CI_Controller{

function index(){

    $data['states']=$this->load_state();
    $this->load->view('form',$data);
}

function load_state(){

    $this->load->model('data_model');

    $data['states']=$this->data_model->getall_states();

    return $data['states'];
}

function get_cities() {
     // Load your model.
    $this->load->model('data_model');
    // Get the data.
    $cities = $this->data_model->get_cities();
    // Specify that we're returning JSON.
    header('content-type: application/json');
    // Return a JSON string with the cities in.
    return json_encode(array('Cities' => $cities));
}

}

これはモデルです:

class Data_model extends CI_Model{

function getall_states(){

    $query=$this->db->get('states');
    if($query->num_rows()>0){
        foreach($query->result() as $row){
            $data[]=$row;
        }
        return $data;
    }

}

function get_cities(){

    $this->db->select('id,cities');
    $this->db->from('cities');
    $this->db->where('s_id',$this->uri->segment(3));
    $query=$this->db->get();

    if($query->num_rows()>0){
        foreach($query->result() as $row){
            $data[]=$row;
        }
        return $data;
    }

}

}

これについて助けてください、うまくいけば正しいコードを提供してください。

4

1 に答える 1

0

get_cities()コントローラー内の別の関数からではなく、関数に直接アクセスしているため、return ステートメントは実際には json 配列をページに出力しません。

return json_encode(array('Cities' => $cities));

それを印刷するには 3 つの方法があります。1 つ目は toprintまたはechojson 配列 (悪い習慣) で、2 つ目は送信された生のテキストを印刷するビューを使用することです。IE

$this->load->view('raw', array('data' => json_encode(array('Cities' => $cities)));

raw.php は次のとおりです。

<?php print $data; ?>

または最後に、次のようにクラスでset_output()関数を使用できます。output

$this->output->set_output(array('data' => json_encode(array('Cities' => $cities)));

function load_state()関数からのみアクセスする場合は、プライベートにすることもできindex()ます。

コードに他の問題があるかもしれませんが、それが最も明白な問題です。

于 2013-06-07T15:07:22.987 に答える