赞
踩
https://www.imooc.com/wenda/detail/565647
我还想指出,您可以使用javascript方法,window.history.replaceState
若要防止刷新和后退按钮上的重新提交,请执行以下操作。
<script> if ( window.history.replaceState ) { window.history.replaceState( null, null, window.location.href ); }</script>
这里的概念证明:https:/dtbaker.net/files/prec-postresubmit.php
我仍然推荐POST/Redirective/GET方法,但这是一种新颖的JS解决方案。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。