任何人都可以帮助我使用这个简单的代码,我有一个按钮,当用户提交它时将加载一个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');
}
}
?>
答案 0 :(得分:0)
由于快速查看,您的AJAX请求可能会失败,因为您的网址未包含在单引号中。请尝试以下操作(请注意URL周围的单引号):
function notify(count){
$.ajax({
type: 'POST',
url: '<?php echo base_url("notifications/set"); ?>',
success:function(response){
alert("Success");
}
});
}
希望它有所帮助...