0

javascript 関数で codeigniter ビューから ajax リクエストを作成していますが、何も起こらず、成功アラート (ok) がポップアップします

function show_drop_downn(){
    document.getElementById("drop_downn").style.visibility = "visible"; 
    $.ajax({
        type: "POST",
        url: "http://localhost/ok/index.php/search/ajax_delete_ntify",
        success: alert('ok'),
    }); 
}

これは私のコントローラーです。完璧に機能しています。ブラウザにURL(ajaxリクエストで使用)をコピーして貼り付けると、すべてがうまくいき、コントローラーがモデルを呼び出し、完璧に機能します

function ajax_delete_ntify()
{
    echo "incontroller";
    $email=$this->session->userdata('email_of_user');
    $this->load->model('search_peoplee');
    $data['userid']= $this->search_peoplee->get_userid_from_email($email);
    foreach ($data['userid'] as $row)
    {
        $one=$row->userid;
    }
    $this->search_peoplee->delete_notifications($one);
    return;
}
4

1 に答える 1