gpt4 book ai didi

php - 在 codeigniter 中提交表单失败后无法保留表单中的值

转载 作者:行者123 更新时间:2023-12-02 14:52:57 24 4
gpt4 key购买 nike

我正在 codeigniter 中创建一个表单,用户需要填写数据并提交,但是提交表单后,如果有任何错误,用户会被重定向回表单,但是在这个阶段,他输入的值应该留在表格中。

我收到 flashdata 错误,但值没有保留在表单中。我尝试使用 set_value 但只是得到空白表单作为返回。有错误的请指出来

查看

<?php echo form_open_multipart('student/data/'.$student->id); ?>
<p><?php echo $this->session->flashdata('req_msg'); ?></p>
<?php
$data = array(
'type' => 'text',
'name' => 'name',
'placeholder' => 'Full Name',
'class' => 'form-control',
'id' => 'form-first-name',
'value' => set_value('name')
);
?>
<?php echo form_input($data); ?>

<?php
$data = array(
'type'=>'tel',
'pattern'=>'^\d{10}$',
'name' => 'contactno',
'placeholder' => 'Enter 10 digit Contact No',
'class' => ' form-control',
'required' => 'required',
'id' => 'form-first-name',
'value' => set_value('contactno')
);
?>
<?php echo form_input($data); ?>

<div class="form-group">
<?php
$data = array(
'type' => 'submit',
'class' => 'btn btn-primary',
'name' => 'submit',
'content' => 'Upload',
'id' => 'btn-submit'
);
echo form_button($data);
?>
</div>

<?php echo form_close(); ?>

Controller

$this->form_validation->set_rules('contactno', 'Contact Number', 'trim|is_unique[student.contactno]');
if ($this->form_validation->run() == FALSE)
{
$this->session->set_flashdata('req_msg', 'Contact number already exists');
redirect('student/data/'.$studentid);
}

最佳答案

您的 View 文件的代码绝对正确。您只需对 Controller 的方法进行少量修改。

在代码中实现解决方案之前,您需要了解几个关键点:

  1. 仅当您的验证规则成功通过并且您接受用户输入的动机已完成时才进行重定向
  2. 当您的验证规则未通过时,加载您的 View 而不是重定向它
  3. 将 form_error(FIELD_NAME) 与每个输入一起放置以显示验证错误

下面是操作示例:

public function add()
{
$this->form_validation->set_rules('contactno', 'Contact Number', 'trim|is_unique[student.contactno]');
if ($this->form_validation->run() !== FALSE) {
// Your database or model function calling will be coded here and make sure it returns boolean value
if ($isTrue) {
$this->session->set_flashdata('req_msg', 'Congrats! You have successfully submitted data');
redirect('student/data/'.$studentid);
}else{

// Handle error logs here
}
}
$this->load->view('your_view', $this->view_data);
}

这是完整的解决方案。我确信,如果验证规则失败,您将获得表单字段中设置的所有值。

如果您遇到任何问题,请告诉我。

关于php - 在 codeigniter 中提交表单失败后无法保留表单中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43737814/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com