gpt4 book ai didi

php - 关于重定向应该如何工作的问题

转载 作者:可可西里 更新时间:2023-11-01 12:51:53 26 4
gpt4 key购买 nike

所以我有一个网络应用程序,我正在处理一个需要在提交之前填充所有字段的表单。如果您尝试在未填充字段的情况下提交应用程序,它会再次加载页面并出现错误。填写所有字段并单击提交后,它会重定向到同一页面并显示一条从 flashdata 生成的消息。请参阅下面的简化示例。

欢迎 Controller :

function show_view() 
{
$this->load->view('form');
}

function process_form()
{
// make the 'quality' field required
$this->form_validation->set_rules('quality', 'Quality', 'required');

if($this->form_validation->run() == FALSE) //if the fields are NOT filled in...
{
echo form_error('quality');
$this->load->view('form'); //reload the page
}
else // if the fields are filled in...
{
// set success message in flashdata so it can be called when page is refreshed.
$this->session->set_flashdata('message', 'Your rating has been saved');
redirect(welcome/show_view);
}
}

现在为了说明我的问题,假设我在“主页” View 上并导航到“表单” View 。如果我填充“质量”字段并单击提交,我将被重定向回“表单” View ,并显示一条成功消息。如果我单击浏览器上的后退按钮,它会将我带回“主页” View 。一切都按预期工作

现在假设我在“主页” View 中,然后导航到“表单” View 。如果我在没有填充“质量”字段的情况下单击提交按钮,则会再次重新加载“表单” View 并显示错误消息。如果我随后填充“质量”字段并单击提交,我将被重定向回“表单” View 并显示一条成功消息。问题是,如果我单击浏览器上的后退按钮,它现在会将我带回出现错误的表单页面,我必须再次单击后退按钮才能返回“主页” View 。

最佳编码实践是什么,如果用户提交有错误的表单,它将显示错误,如果他们修复错误并再次提交表单,它将显示成功消息,如果他们点击返回浏览器,它会将他们带回“主页” View ??

最佳答案

问题是您使用两个单独的函数来处理表单。表单验证类文档并没有很好地解释它,我花了一段时间才意识到它但是 form_validation->run() 返回 false 如果有错误,但如果它是一个 GET 请求,并且随后解释form_error()、validation_errors()、set_value()等相关函数中的GET请求

CI(和一般)中的最佳实践是这样做的:

class Welcome extends CI_Controller{

function home(){
$this->load->view('home');
}

function form()
{
// make the 'quality' field required
$this->form_validation->set_rules('quality', 'Quality', 'required');

// If the fields are NOT filled in...
// or if there isn't a POST! (check the Form_validation.php lib to confirm)
if ( $this->form_validation->run() === FALSE)
{
// This form_error() function actually doesn't do anything if there
// wasn't a form submission (on a GET request)
echo form_error('quality');
$this->load->view('form'); // load or reload the page
}
else // if the fields are filled in...
{
// set success message in flashdata so it can be
// called when page is redirected.
$this->session->set_flashdata('message', 'Your rating has been saved');
redirect('welcome/home','location', 303);
exit;
}

}

然后在 View 中有表单 action="welcome/form"

基本上所有的表单错误函数和所有与表单验证相关的东西都会检查表单验证器是否实际运行...这是表单帮助文件中 form_error 函数的示例

function form_error($field = '', $prefix = '', $suffix = '')
{
if (FALSE === ($OBJ =& _get_validation_object()))
{
return '';
}

return $OBJ->error($field, $prefix, $suffix);
}

当它们不是 POST 时,它显示正常,并且具有您正在寻找的自然页面流。

与问题无关,但表单验证类令人困惑/值得注意...如果您在参数字段中使用 xss_clean、prep_url 等过滤器,它实际上会为您重新填充 $_POST 数组,因此您不需要真的需要做任何额外的事情。

有时值得看看 CI 源代码的内部结构,那里有一些聪明的东西,但并不完全明显。

关于php - 关于重定向应该如何工作的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5761271/

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