CodeIgniter flashdata重定向后不工作 [英] CodeIgniter flashdata not working after redirect

查看:117
本文介绍了CodeIgniter flashdata重定向后不工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经设置了这样的闪存数据

I have set the flash data like this

$this->session->set_flashdata('dispMessage','my message is here'));

我在会话库中找到了该消息,但未在重定向页面中显示。
和我使用codeigniter版本2.2.0。

I found that message in session library but not display in redirect page. and I am use the codeigniter version 2.2.0.

任何人都可以帮助...?

Can anyone help...?

推荐答案

// Set flash data 
$this->session->set_flashdata('dispMessage', 'This is my message');
// After that you need to used redirect function instead of load view such as 
redirect("yourcontroller/controllermethod");

// Get Flash data on view 
$this->session->flashdata('dispMessage');

这篇关于CodeIgniter flashdata重定向后不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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