在发布数据后,我$.post
在下面使用回调来重定向页面。有时页面重定向很快,但有时可能需要 3-5 秒。
我是新手,所以不知道为什么要花这么长时间。是在等待php结束吗?这里有什么我可以改变以加快速度吗?
另一方面...encodeURIComponent
似乎不起作用。URL 中总是有一个空格,比如?fbname=John Doe" which I am trying to remove with
encodeURIComponent`
谢谢!
FB.api('/me', function(response) {
$.post("addtodb.php",
{fbname:response.name},
function(data) {
window.location.href = "step2.php?fbname="+encodeURIComponent(response.name); //redirect after post callback
})
});