Codeigniter HMVC Ajax [英] Codeigniter HMVC Ajax

查看:131
本文介绍了Codeigniter HMVC Ajax的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的问题上我需要一些帮助. 我有一个用户列表,我想在CI HMVC中使用ajax删除删除按钮的onclick用户.这是我的列表视图的代码

I need some help in my issue. I have a list of users and I want to delete user onclick of delete button using ajax in CI HMVC. Here is code of my list view

$(function() {
    $(".tip-del").click(function() {
        var recId = $(this).data("id");
        var parent = $(this).parent();
        var BASE_URL = "<?php echo base_url()?>";
        var r = confirm("Are you sure you want to delete this user?");
        if(r == true){
            $.ajax({
                url : BASE_URL + 'auth/delete_user',
                type: 'post',
                data: {'rec_id' : recId },
                success: function (response){
                    try{
                        if(response == 'true'){
                           parent.slideUp('slow',function(){$(this).remove();}); 
                        }
                    }catch(e) {     
                        alert('Exception while request..');
                    }                    
                },
                error: function (xhr, text, message) {
                    console.log(message);
                }
            });
            return false;
        }
    });
});

这是我的控制器(视图所在的模块相同)代码

And here is my controller(same module where the view is located) code

function delete_user() {
    if ($this->input->post('rec_id')) {
        $id = $this->input->post('id');
    }
    if (!$this->ion_auth->in_group('admin')) {
        $this->session->set_flashdata('message', $this->lang->line("access_denied"));
        $data['message'] = (validation_errors() ? validation_errors() : $this->session->flashdata('message'));
        redirect('module=auth&view=users', 'refresh');
    }
    $this->ion_auth_model->deleteUser($id);
}

这是我的模型代码

public function deleteUser($id) {
    if ($this->db->delete('users', array('id' => $id)) && $this->db->delete('users_groups', array('user_id' => $id))) {
        return true;
    }
    return FALSE;
}

有人可以帮我吗?我不明白我要怎么做.在ajax响应的预览中,我得到的错误为

Can anybody please help me for this. I cant understand what I am going wrong. In a preview of ajax response I got the error as

An Error Was Encountered. The action you have requested is not allowed.

谢谢.

推荐答案

我认为您的删除查询是错误的.它应该如下所示(在模型代码中):

I think your delete query is wrong. It should be like below (in model code):

if ($this->db->where(array('id' => $id))->delete('users') && $this->db->where(array('user_id' => $id))->delete('users_groups')) {
        return true;
}

这篇关于Codeigniter HMVC Ajax的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆