AJAX / 历史 - 什么时候是在 AJAX 应用程序中调用 `pushState` 方法的合适时间?

发布于 2024-11-25 01:27:49 字数 191 浏览 4 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

饮湿 2024-12-02 01:27:49

通常只有 HTTP 200 会添加到浏览器历史记录中。因此,如果您的 Ajax 调用由于某种原因出现 404 错误,那么这样做可能是有意义的,

readyState == 4 && status == 200

它不会像正常浏览一样添加到历史记录中。

Only HTTP 200's normally get added to a browsers history. So it probably makes sense to do

readyState == 4 && status == 200

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文