dongzhui9936 2016-07-14 09:13
浏览 52
已采纳

Codeigniter:无法从一个控制器获取会话变量值到另一个控制器

I have included session in autoload, and its working on all other places. I'm having problem in retrieving session variable it return null result. While in the controller where i have set the session there it's working fine.
Here is the code where i'm setting it in else condition:

class Controller_catagory extends CI_Controller
{

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

        $this->load->model('generic_model');
        $this->load->model('backend/model_post');
        $this->load->model('backend/model_permissions');
    }

    public function index($param1='',$param2='') 
     {
        $id=$this->generic_model->getAllRecords('dramas',array(
            'drama_slug' => $param2 ),'drama_id','DESC');
        // print_r($id);
        if (!empty($id)) 
        {
            foreach ($id as $key) 
            {
                $id = $key['drama_id'];
            }
        }
        $data;

        if (!empty($param1) && empty($param2)) 
        {
            $data["page"]    = 'frontend/includes/view_alldramas';


            $id = $this->generic_model->getAllRecords('channel',array('channel_slug' => $param1 ),'channel_id','DESC');

            if (!empty($id)) 
            {
                foreach ($id as $key) 
                {
                    $id = $key['channel_id'];
                    $ch_slug= $data['ch_slug'] = $key['channel_slug'];
                    $this->session->set_userdata('ch_slug',$ch_slug);
                }
            }

            $this->session->set_userdata('channel_capture',$id);

            $data['dramas_pagination'] = $this->model_post->get_specific_channel_pagination(0,12,$id);
            $data["get_dramas"]=$this->model_post->get_all_dramas();

            $data['channels'] = $this->generic_model->getAllRecords('dramas', array('channel_fk' => $id ),'drama_id','DESC');
        }
        else
        {
            // The id is printing right result
            echo $id;

            // Here i'm setting session, if i retrieve here its working
            $this->session->set_userdata('drama_episode',$id);

            $data['episodes_pagination'] = $this->model_post->get_specific_post_pagination(0,12,$id);
            $data["get_episodes"]=$this->model_post->get_all_dramas();
            $data['dramas'] = $this->generic_model->getAllRecords('post',$arr = array(
            'dramas_fk' => $id ),'id','DESC');
            $data["page"]    = 'frontend/includes/view_allposts';

        }

        $data['title']   = 'GLOBAL VIDEOS';
        $data['heading'] = 'Dramas List';
        $data["top"]     = 'frontend/includes/top_home';


        $this->load->view('frontend/index',$data);
    }
  }

}

Now here is another class where i'm trying to get the value of set session but its not retrieving the data and i'm getting empty record.

Note: i am doing the same thing with 'channel_capture' and i'm successfully getting its value

class Home extends CI_Controller {

 public function __construct() 
{
    $data = array();
    parent::__construct();


    $this->load->model('backend/model_post');
    $this->load->model('generic_model');
}
public function ajax_posts()
{
    $start= $_GET['start'];

    // it gives empty result here don't know why
    $id = $this->session->userdata('drama_episode');

    //prints nothing
     echo "This key: ".$id;

    $post_pagination=$this->model_post->get_specific_post_pagination($start, 12, $id);
    var_dump($post_pagination);
    $str='';
    $base_url=base_url();

    if (empty($post_pagination))
    { 
        return false;
    }

    foreach($post_pagination as $post)
    {

        $str.=          '<div class="col-lg-3 col-sm-6 col-md-4 epi_height" >';
        $str.=              '<a href='.$base_url.$post['slug'].'>';
        $str.=              '<img class="img-responsive" src='.$base_url.$post['thumbnail'].' alt="recent dramas" />';
        $str.=              $post['title'];
        $str.=              '</a>';
        $str.=         '</div>';    

    }
        echo $str; 
   }
}
  • 写回答

3条回答 默认 最新

  • dourao1877 2016-07-14 10:07
    关注

    Try to set session before if else condition like:

    $this->session->set_userdata('drama_episode',$id);
    

    your if else goes here and then retrieve it.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler