我正在尝试使用java脚本重新加载页面页面重新加载,但页面中的帖子数据未加载帖子数据被删除,而页面重新加载任何人都可以帮助我
function currencychange(xxx) {
setTimeout('delay()', 2000);
}
function delay(){
location.reload();
}
这是我用来重新加载页面的javascript代码
答案 0 :(得分:5)
window.location.reload()
发出GET
,是的,POST
数据将会丢失。
您发布帖子的唯一方法是:
使用AJAX发布数据,获取新页面,并用它替换您的body元素,或
在页面上创建一个表单元素,其操作为当前window.location.href
,并将要发布的数据作为隐藏输入放回其中。然后,在货币更改时拨打form.submit()
答案 1 :(得分:1)
我认为你需要重新POST不重新加载,就像HTTP POST而不是HTTP GET一样。
答案 2 :(得分:1)
这是Chrome中的已知错误。问题是,当您通过JavaScript重新加载时,Chrome不会执行POST。如果您使用重新加载按钮执行此操作,它将表现正常并询问用户是否要重新发布数据。
所有细节都在这里: http://code.google.com/p/chromium/issues/detail?id=6429 [编辑:相关bug] https://bugs.webkit.org/show_bug.cgi?id=23735
请为这个问题做好准备,以免它变得更加快速。
答案 3 :(得分:1)
这是一个完整的黑客攻击,但是必须允许它与Safari一起使用。因此,在页面的最后,我将所有帖子数据推送到会话
$_SESSION['post'] = $_POST
然后我使用jQuery来更新会话变量。然后使用location.reload();在我完成更改后重新加载页面,当页面加载时,我简单地将所有会话数据推回到帖子中。
$_POST = £_SESSION['post'];
结果与提交表单的结果相同。
答案 4 :(得分:0)
location.reload
不应发布任何数据。如果您需要将数据发送回服务器,请考虑使用method='post'
(如果您有)提交表单,或使用AJAX(例如jQuery.post
)
答案 5 :(得分:0)
我用这种方式解决了问题:
// In the page called by POST, assuming coming from a search form
// (i.e. searchResult.php)
$working=array();
if ($_POST) {
if(!isset($_POST["postArray"])) // Not set, first call
$working = $_POST;
else
$working = unserialize($_POST["postArray"]); // recalled by someone else
foreach ($working as $key => $value) { // Getting data
$kv[] = "$key=$value";
// do something with input data....
}
echo '<form action="newRequest.php" method="post">';
// Your data here ......
echo '<input type="hidden" name="currPost" value="' . htmlentities(serialize($working)) . '">';
echo '<input type="submit" value="Go!">';
echo '</form>';
} // end if($_POST) ....
// This is the "newRequest.php" form
$postDataReceiver=array();
foreach ($_POST as $key => $value) { // Getting data from searchResult.php
$kv[] = "$key=$value";
switch($key) {
// Your other stuff here ......
case "currPost": // Here we are!
$postDataReceiver = unserialize($value);
break;
} // end switch
} // end foreach
echo '<form action="searchResult.php" method="post">';
// Your data here ......
echo '<input type="hidden" name="postArray" value="' . htmlentities(serialize($postDataReceiver)) . '">';
echo '<input type="submit" value="Go Back to search result!">';
echo '</form>';
有点复杂,但它有效。希望这可以帮助! 最好的,卢卡。
答案 6 :(得分:0)
你可以试试这个:
<form action="<?=$_SERVER['PHP_SELF']?>" method="post" name="form" id="form">
</form>
<script>
// reload page every x miliseconds
setInterval(function(){
// inser here the post variables. Examples:
var input = document.createElement('input');
input.type = 'hidden';
input.name = 'id';
input.value = <?=$id?>;
document.form.appendChild(input);
var input2 = document.createElement('input');
input2.type = 'hidden';
input2.name = 'anotherid';
input2.value = <?=$anotherid?>;
document.form.appendChild(input2);
// send form
document.form.submit();
}, 120000);
</script>