Codeigniter Ajax Post无法正常工作

时间:2014-10-22 16:23:27

标签: php jquery ajax codeigniter post

大家好我试图为喜欢和不喜欢的评论创建一个简单的投票,但我想用jquery Ajax做这个,所以我不想在有人喜欢的时候刷新页面。

这是我的jquery代码

$(document).ready(function(){
      $(".vote-btn").click(function() {
        var voteId = this.id;
        var upOrDown = voteId.split('_'); 
        // alert(upOrDown); = provides -->  id,name
        // var all = 'voteId:'+upOrDown[0]+ ',upOrDown:' +upOrDown[1];
        // alert(all);

        $.ajax({
            type: "POST",
            url: "http://localhost/Dropbox/cipr/index.php/demo",
            cache: false,
            dataType:'json',            
            data:{'voteId='+upOrDown[0] + '&upOrDown=' +upOrDown[1],
            success: function(response){                
                try{
                    if(response=='true'){   
                        var newValue = parseInt($("#"+voteId+'_result').text()) + 1;            
                        $("#"+voteId+'_result').html(newValue);
                    }else{
                        alert('Sorry Unable to update..');
                    }
                }catch(e) {     
                    alert('Exception while request..');
                }       
            },
            error: function(){                      
                alert('Error while request..');
            }
         });
    });
});

这是我的控制器代码Demo.php

<?php

类Demo扩展了CI_Controller {

function Demo(){
    parent::Controller();
    $this->load->model('sygjerimet');
}

public function index(){

    $voteId=  $this->input->post('voteId');
    $upOrDown=  $this->input->post('upOrDown');

    $status ="false";
    $updateRecords = 0;

    if($upOrDown=='voteup' || true){
        $updateRecords = $this->sygjerimet->updateUpVote($voteId);
    }else{
        $updateRecords = $this->sygjerimet->updateDownVote($voteId);
    }

    if($updateRecords>0){
        $status = "true";
    }
    echo $status;
}

这是我的模型代码sygjerimet.php

<?php 

类Sygjerimet扩展了CI_Model {

function shtoSygjerimin()
{
    $permbajtja = $this->input->post('idea');
    $data = array(
        'permbajtja' => $permbajtja
    );

    $this->db->insert('pr_sygjerimet', $data);

}

function updateDownVote($voteId){
    $sql = "UPDATE pr_sygjerimet set vote_down = vote_down+1 WHERE ID =?";
    $this->db->query($sql, array($voteId));
    return $this->db->affected_rows();
}

function updateUpVote($voteId){
    $sql = "UPDATE pr_sygjerimet set vote_up = vote_up+1 WHERE ID =?";
    $this->db->query($sql, array($voteId));
    return $this->db->affected_rows();
}

}

这是我的观点代码

<?php
          $query = $this->db->query('SELECT * FROM pr_sygjerimet');

            foreach ($query->result() as $row)
            {
                echo "<div class='sygjerimi'>";
                echo htmlspecialchars($row->permbajtja);
                if(!$log_in):
                echo '<br>';
                echo ' <button id="'.$row->ID.'_votedown" class="vote-btn"><i class="fa fa-thumbs-down">'.htmlentities($row->vote_down).'</i></button> ';
                echo ' <button id="'.$row->ID.'_voteup" class="vote-btn"><i class="fa fa-thumbs-up">'.htmlentities($row->vote_up).'</i></button> ';
                endif;
                echo "</div>";
            }

        ?>

当我投票时它就是执行此代码的人

alert('Error while request..');

如果有人可以提供帮助那就太棒了:)谢谢

2 个答案:

答案 0 :(得分:2)

这很可能是CI CSRF保护;如果您使用POST,CI会自动检查CSRF隐藏字段,因为您自己构建ajax帖子,所以它不会发送隐藏字段,因此它会包含在您身上。

检查config / config.php文件中的几行$config['csrf_*']行。你可以禁用(但我不建议这样做)。你也可以在jQuery中序列化表单并发送它,它应该适合你,并让你更多地受到CSRF攻击的保护。

只是为了进入或退出规则,您可以禁用'csrf_protection',如果它可以正常工作,您可以再次启用它,然后更改您的javascript以序列化表单并将其用作您的ajax帖子的数据。< / p>

答案 1 :(得分:0)

试试这个

$.ajax({
    //pull the toke csrf like this
    data:{'<?php echo $this->security->get_csrf_token_name();?>':'<?php echo $this->security->get_csrf_hash();?>'},

});