2

案例:我在页面中有一个表单,它使用户能够在一个简单的文本文件中添加某些值。现在我想在成功添加值后重定向到同一页面。

读/写代码都很好用,我什至放了重定向代码,但这会显示警告header information is already sent

我试过的标题:

header("Location: some_url_here_in_same_site");
wp_redirect("some_url_here_in_same_site");

我的表格代码:

if(isset($_POST['txtName'])}

    // form validation code here
    if(successful)
        wp_redirect("some_url_here_in_same_site");

}

问题:

  • 在我们的插件中提交表单后,我们如何在 wordpress 中进行重定向?
  • ob_start不会工作,所以也不建议我这样做
4

1 回答 1

7

好的,我设法使用 Hooks 做到了。我使用下面的代码进行了重定向。请注意,表单操作设置为admin-post.php

<form action="admin-post.php" name="frmHardware" id="frmHardware" method="post">
    <!-- form elements -->
    <!-- Essential field for hook -->
    <input type="hidden" name="action" value="save_hw" />
</form>

然后在我的插件的主文件中,我添加了以下内容:

add_action('admin_init', 'RAGLD_dashboard_hardware_init' ); // action hook add/remove hardware

其中,函数定义如下: 另请注意,第一个参数派生自admin_post哪个保留字与上action式中的隐藏字段组合。

function RAGLD_dashboard_hardware_init() {
    // checking for form submission when new hardware is added
    add_action( 'admin_post_save_hw', 'RAGLD_process_hw_form' );
}

在上面提交表单的评估之后add_action,将调用函数,RAGLD_process_hw_form该函数旨在验证表单条目并相应地采取行动/重定向。

function RAGLD_process_hw_form() {
    if (form_is_validated) {
        wp_redirect( add_query_arg( array('page' => 'ragld/edit-hardware', 'action'=> 'InvalidData'), admin_url() ));
    } else {
        //do something else
    }
}

这是我暂时能想到的解决方案,如果你觉得它们更有效,你可以提出你的答案。

于 2012-10-15T08:58:46.383 回答