首先,对不起我的英语: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');
}
}
}