我正在从 woocommerce 插件发送表单。我调整了thankyou.php
页面并添加了电子邮件发送功能。但是 $_POST 数组是空的。
使用 Chrome 开发工具检查我发现发布的页面有临时重定向:
重定向在哪里发起?有没有办法在重定向之前捕获 $_POST 数组?
相关表格代码:(in /woocommerce/templates/checkout/form-checkout.php
)
<form enctype="multipart/form-data" name="checkout" method="post" id="checky" class="checky" action="http://pharma-job.shared6.lighthost.co.il/checkout/order-received">
<input type="hidden" name="admin_email" value="<?php echo get_option('admin_email'); ?>" />
<?php if ( sizeof( $woocommerce_checkout->checkout_fields ) > 0 ) : ?>
<?php do_action( 'woocommerce_checkout_before_customer_details'); ?>
<div class="col2-set" id="customer_details">
<div class="col-1">
<?php do_action('woocommerce_checkout_billing'); ?>
</div>
<div class="col-2">
<?php do_action('woocommerce_checkout_shipping'); ?>
</div>
</div>
<label for="cv_file">העלה קו"ח: </label>
<input type="file" name="cv_file">
<?php do_action( 'woocommerce_checkout_after_customer_details'); ?>
<h3 id="order_review_heading"><?php _e('Your order', 'woocommerce'); ?></h3>
<?php endif; ?>
<?php do_action('woocommerce_checkout_order_review'); ?>
</form>
更新:我查看了生成的 HTML,发现似乎是确凿的证据:
<input type="hidden" name="_wp_http_referer" value="/checkout/" />
但是这个重定向背后的机制是什么?我该如何绕过它?