AJAX / 历史 - 什么时候是在 AJAX 应用程序中调用 `pushState` 方法的合适时间?
我正在使用 AJAX 和历史对象(使用 .pushState
方法)。我只是想知道什么时候调用 pushState
方法合适?是在请求之前吗?请求后?或者我应该在 XMLHttpRequest 的 readyState
的什么状态下调用它?我希望它尽可能表现得像普通请求(没有 AJAX)。
I'm working with AJAX and history object (with the .pushState
method). I just want to know when is the right time to call pushState
method? Is it before request? after request? or on what state of XMLHttpRequest's readyState
should I call it? As much as possible, I want it to behave like a normal request (without AJAX).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常只有 HTTP 200 会添加到浏览器历史记录中。因此,如果您的 Ajax 调用由于某种原因出现 404 错误,那么这样做可能是有意义的,
它不会像正常浏览一样添加到历史记录中。
Only HTTP 200's normally get added to a browsers history. So it probably makes sense to do
That way if your Ajax call has a 404 error for some reason it won't be added to history just like in normal browsing.