我正在使用 CodeIgniter 3,即使在重定向之后,我在该项目上设置的 flashdata 也不会被清除。刷新页面或再次访问页面后仍然显示。我该如何解决这个问题?
控制器中的一个功能。
public function updateDonor($donor)
{
$birthDate = $this->input->post('donordob');
$currentDate = date("Y-m-d");
$age = date_diff(date_create($birthDate), date_create($currentDate));
$this->form_validation->set_rules('donorname', 'Donor Name', 'required');
$this->form_validation->set_rules('donornic', 'Donor NIC', 'required');
$this->form_validation->set_rules('donordob', 'Donor DOB', 'required');
$this->form_validation->set_rules('donorweight', 'Donor Weight', 'required');
$this->form_validation->set_rules('donormobile', 'Donor Mobile', 'required');
if ($this->form_validation->run()) {
$data = [
'DonorName' => $this->input->post('donorname'),
'DonorNIC' => $this->input->post('donornic'),
'DonorDOB' => $this->input->post('donordob'),
'DonorAge' => $age->format("%y"),
'DonorWeight' => $this->input->post('donorweight'),
'DonorMobile' => $this->input->post('donormobile'),
];
$this->load->model('Donor_Model');
$data['donor'] = $this->Donor_Model->updateDonor($data, $donor);
$this->session->set_flashdata('donorupdated', 'Donor detailed updated successfully!');
redirect(base_url('index.php/staff/viewdonors'));
} else {
$this->editDonors($donor);
}
}
视图中的代码
<?php if ($this->session->flashdata('donorupdated')) { ?>
<script>
alertify.set('notifier', 'position', 'top-right');
alertify.success("<?php echo $this->session->flashdata('donorupdated'); ?>")
</script>
<?php } ?>