2

任何人都可以用这个简单的代码帮助我吗,我有一个按钮,当用户提交它时,它将加载一个 javascript,该 javascript 将调用 ajax 请求来更新我的表中的一个字段,所以我将一个执行此方法的控制器传递给我的 ajax 请求但什么也没发生。这是我的看法

 <!--body part--->
  echo "<button class='btn btn-info dropdown-toggle notify-btn' data-toggle='dropdown' 'href='#' value=".$count." onclick='notify(".$count.")'>".$count."</button>"; 

 <!--Here is my javascript--->

 function notify(count){
            $.ajax({
            type: 'POST',
           url:<?php echo base_url("notifications/set")?>,

        success:function(response){
            alert("Success");
        }
     });

            }

<!--Here is my Controller--->

     class Notifications extends CI_Controller{
     public function __construct()
     {
      parent::__construct();
      $this->load->model('notification_model');
     }

      public function index(){ 
         $this->set();
          }

        public function set(){
              $this->notification_model->set_notifications();
         }

<!--Here is my Model--->

 <?php class Notification_model extends CI_Model { 
            function set_notifications(){
                $this->db->where('notification_status','active');
                $this->db->set('notification_status',"inactive",FALSE);
                $this->db->update('messages');
            }
        }

?>
4

1 回答 1

0

快速浏览一下,您的 AJAX 请求可能会失败,因为您的 URL 没有用单引号括起来。尝试以下操作(注意 URL 周围的单引号):

function notify(count){
    $.ajax({
        type: 'POST',
        url: '<?php echo base_url("notifications/set"); ?>',

        success:function(response){
            alert("Success");
        }
    });
}

希望能帮助到你...

于 2013-06-17T15:25:40.863 回答