2

首先,对不起我的英语:D

我尝试在 Codeigniter 上进行简单的登录,但没有成功。我阅读了官方文档并将脚本减少到最低限度。每次我重定向或刷新页面或转到另一个控制器时,我的会话都是空的。如果我只创建一个控制器并进行简单的读取和写入,它会运行良好,直到我刷新或重定向。

这就是我想要做的:1)第一个控制器是主控制器。使用登录表单加载视图。此表单对方法 validation_form 和 username_check 回调有一个操作。

2)如果用户能够登录,我设置我的用户数据并重定向到受限控制器,这是我的受限区域。

PS我在自动加载中使用库会话,并且选项数据库处于活动状态。我也有自动加载的数据库库。

主控制器

class Main extends CI_Controller {


public function __construct(){
    parent::__construct();

}

public function index()
{
    $this->load->view('login_view');
}

public function validation_form()
{
    $this->load->library('form_validation');
    $this->form_validation->set_rules('email', 'Email', 'required|callback_username_check');
    if ($this->form_validation->run() == FALSE){
       echo 'validation_error';
    }else{
       redirect('/restricted');
    }
}

public function username_check(){
    $this->load->model('login_model');
    $email=$this->input->post('email');
    $login=$this->login_model->validate($email);
    if ($login != FALSE){                    
                return true;
    }
    return false;
}

}

登录模式

class Login_model extends CI_Model{

public function __construct(){
    parent::__construct();
}

 public function validate($email){

    // Prep the query
    $this->db->where('EmailDatore', $email);

    // Run the query
    $query = $this->db->get('Datore');
    // Let's check if there are any results
    if($query->num_rows() == 1)
    {
        // If there is a user, then create session data
        $row = $query->row();
        $data = array(
                'email' => $row->EmailDatore,
                'nome' => $row->Nome,
                'cognome' => $row->Cognome,                    
                'validated' => true
                );
        $this->session->set_userdata($data);
        return true;
    }
    // If the previous process did not validate
    // then return false.
    return false;
}

}

RESTRICTED CONTROLLER 类 受限扩展 CI_Controller{

 public function __construct(){
    parent::__construct();
    $this->check_isvalidated();
}

public function index(){
    // If the user is validated, then this function will run
    echo 'Congratulations, you are logged in.';
}

private function check_isvalidated(){
    if(! $this->session->userdata('validated')){
        redirect('main');
    }
}

}

4

2 回答 2

1

模型中的错字,不确定是否还有其他错误,但至少有这个错误,这意味着您永远无法完成成功代码。

 if($query->num_rows() == 1)

编辑 - 这里也有错误,你传递了 $data 但填充了 $email。因此模型得到一个空字符串。

public function username_check(){
$this->load->model('login_model');
$email=$this->input->post('email');
$login=$this->login_model->validate($email);
if ($login != FALSE){                    
            return true;
}
return false;
}
于 2012-11-13T08:45:17.020 回答
1

我认为回调函数也可以是这样的。

public function username_check($str){
   $this->load->model('login_model');
   $login=$this->login_model->validate($str);
   if ($login != FALSE){                    
            return true;
   }
return false;

您的代码是到达模型还是回调失败?它没有到达代码的哪些部分?放置 vardump(); 或者死(); 去检查。

于 2012-11-13T09:19:21.163 回答