1

我在 CodeIgniter 中处理 Flash 数据。

我基本上想:

向数据库添加问题 将用户重定向回页面 显示成功弹出消息“您的问题已创建”

到目前为止,我可以成功地将类别添加到数据库并且用户输入得到正确验证,唯一的事情是我不知道如何创建弹出成功消息。(我不想加载成功视图),只需重定向回他们来自的地方并在顶角或其他地方显示小消息。

闪存数据是正确的方法吗?

控制器:-

 $create_data =  $this->input->post();
    if(isset($create_data['question'])){
    $this->load->model('Test_model', 'test');
    $insert_status = $this->test->insertQuestions($create_data['question']);
    if($insert_status){
            echo "Record Inserted";
        }
        else{
            echo "Insertion Failed";
        }
    }
$this->layout->view('test/create');
4

2 回答 2

0
function insert(){
    $create_data =  $this->input->post();
    if(isset($create_data['question'])){
        $this->load->model('Test_model', 'test');
        $insert_status = $this->test->insertQuestions($create_data['question']);
        if($insert_status){
            //echo "Record Inserted";
            $this->session->set_flashdata('msg', 'Record Inserted'); //set session flash
            redirect('controller_name/insert', 'refresh');
        }
        else{
            //echo "Insertion Failed";
            $this->session->set_flashdata('msg', 'Insertion Failed'); //set session flash
            redirect('controller_name/insert', 'refresh');
        }
    }else{
        $this->layout->view('test/create');    
    }
}
?>    

在查看页面中:

<p><?=$this->session->flashdata('msg')?></p>
于 2013-09-09T07:05:33.500 回答
0

闪存数据听起来像是要走的路。你可以这样做:

if($insert_status){
    $notification = "Record Inserted";  
} else {
    $notification = "Insertion Failed";
}

$this->session->set_flashdata('notification', $notification);
redirect('controller/method','refresh');

然后访问它

$this->session->flashdata('notification');

手册是此类信息的宝贵来源。

于 2013-09-09T07:05:37.727 回答