CodeIgniter、set_flashdata 重定向后不起作用

问题描述 投票:0回答:2

仅通过一次重定向,set_flashdata 在重定向后无法直接工作。

我在此过程中使用一个控制器 - Profilers 控制器。它处理会员确认过程,并在重定向上显示登录页面。流程如下:

  1. 本次会话set_flashdata('topic','newmember')

  2. 重定向('登录')

  3. 路线 ['登录'] = '分析器/登录'

  4. topic = $本次会话flashdata('topic')

我已经关闭了所有数据库会话配置以进行更清晰的调试,即使会话库在配置中打开,我仍然开始调用它,这似乎也不起作用。

这是我的代码。如您所见,我正在将路径信息发送到日志文件 path.log:

在控制器Profilers中,函数confirmMember:

public function confirmMember()
  {
    //use_ssl();
    $this->form_validation->set_rules('handle', 'Unique Member Name', 'trim|xss_clean|required|min_length[5]|max_length[30]');
    $this->form_validation->set_rules('confirmation', 'Confirmation Code', 'trim|xss_clean|required|min_length[20]|max_length[20]|alpha_numeric');

    if ($this->form_validation->run() === FALSE) {echo "here";exit;
      $data['handle']=$this->input->post('handle');
      $data['confirmation']=$this->input->post('confirmation');
      $this->load->view('signing/defaults/header',$data);
      $this->load->view('defaults/heading',$data);
      $this->load->view('defaults/banner');
      $this->load->view('defaults/banner_right');
      $this->load->view('member/temp/index',$data);
      $this->load->view('defaults/footer',$data);
    } else {

      $post = $this->input->post(NULL,TRUE);
      $data['member'] = $this->Signing_model->model_confirmMember($post);

  if ($data['member']['confirmed']!==FALSE) {
    /* PATH CHECK */ 
    error_log("member confirmation not false\n",3, LOG_DIR.'path.log');
    unset($post);
    $this->session->sess_destroy();
    $this->session->set_flashdata('topic', 'newmember');
    // $this->session->keep_flashdata('topic');
    redirect('login','refresh');
  } else {
    /* PATH CHECK */ 
    error_log("member confirmation IS FALSE\n",3, LOG_DIR.'path.log');
    $this->load->view('member/temp/index',$data);
  }

我的日志文件显示该路径正在使用正确的路径并显示“成员确认不错误”。

我尝试过打开 keep_flash 数据(我认为这不起作用,因为没有其他重定向)和关闭。

我也尝试过不使用“刷新”的重定向。

在config/routes.php中:

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

$route['join'] = 'profilers/joinUp';
$route['login'] = 'profilers/signIn';
...

登录页面使用Profilers Controller,登录功能如上所示:

public function signIn()
{
  $topic = $this->session->flashdata('topic');
  if (isset($topic)) {
      $message = "topic is set. topic = ".$topic."\n";
      if ($topic!==FALSE) {
              error_log("flash var topic is not false\n", 3, LOG_DIR.'path.log');
      } else {
              error_log("flash var topic is FALSE\n", 3, LOG_DIR.'path.log');
      }
  } else {
      $message = "topic is NOT set\n";
  }
  error_log($message,3,LOG_DIR.'path.log');

  exit;
  ...
  ...
}

日志文件显示主题已设置,但错误。

“flash var 主题为 FALSE”

“主题已设置。主题=”

当然主题变量没有设置,因为它是FALSE。

如您所见,我已将获取闪存数据功能移至控制器功能的开头,以绕过任何可能损坏数据的内容。

codeigniter flash session
2个回答
8
投票

销毁会话后,您可能需要重新启动会话。

尝试在致电

sess_destory()
后添加此内容:

$this->session->sess_create()

或者,您可以避免破坏会话,以及

unset()
您希望删除的值。


0
投票

波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂波蒂

© www.soinside.com 2019 - 2024. All rights reserved.