这是我到目前为止所拥有的:
<?php
// Simulating some post values for test proposes
$_POST['test'] = 'testing values';
// POST contents (originally from a form in another page)
$query = http_build_query( $_POST );
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function() { $("#myiframe").load(function(){ window.location.replace('after.php'); }); });
</script>
<title>iFrame Load POST</title>
</head>
<body>
<iframe id="myiframe" src="load.php" width="0" height="0"></iframe>
</body>
</html>
我需要的是能够将最初从另一个页面中的表单发送的 $_POST 数据发送到 iframe,并在 iframe 加载和处理发布数据后重定向页面。
- - 编辑 - -
事实上,它不需要 iframe,但我仍然需要对 load.php 进行 post 调用并等待它加载以进行重定向。在 load.php 完成加载请求之前,我无法重定向。这就是我使用 iframe 方法并且之前使用 GET 而不是 POST 的原因。
--------------
有人可以帮忙吗?
谢谢!