jQuery:为什么是 2 个 ajax GET 请求而不是 1 个请求?

发布于 2024-09-25 06:53:24 字数 393 浏览 1 评论 0 原文

为什么此页面有两个 AJAX GET 请求而不是一个?

它在 一个之后有两个请求。 org/tools/demos/tabs/ajax3.htm" rel="nofollow">另一个,但它必须只有 1 个请求。 可以找到可编辑的代码 此处

您可以在 Firebug 控制台中检查该错误。

Why does this page have two AJAX GET requests instead of one?

It has two requests one after another, but it must have just 1 request. Editable code can be found here.

You can check the bug in the Firebug console.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我一向站在原地 2024-10-02 06:53:24

您的演示结合了支持 AJAX 的选项卡和历史记录插件。

看起来选项卡插件总是加载第一个选项卡,然后加载第二个选项卡(如果历史记录指定了一个选项卡)。

事件的顺序是:

  • 页面加载
  • 第一个选项卡 (aHW5jy) 通过 AJAX 请求(第一次 GET)
  • 历史记录插件从 URL 恢复状态(请参阅 URL 中的 #http://bit.ly/cKnMc2 ,然后对 cKnMc2 执行 GET。
  • 第二个 AJAX 请求完成,结果显示。

因此,总而言之,您需要在选项卡插件初始化任何选项卡的内容之前确定 URL 正在请求哪个选项卡。如果指定的话,它应该只抓取选项卡 #3,而当前它抓取选项卡 #1,然后抓取选项卡 #3。

Your demo is combining AJAX-enabled tabs and a history-plugin.

It looks like the tab plugin is always loading the first tab and then loading a second tab if one is specified by the history.

The order of events is:

  • Page loads
  • First tab (aHW5jy) is requested via AJAX (1st GET)
  • History plugin restores state from URL (sees: #http://bit.ly/cKnMc2 in the URL, and then performs GET for cKnMc2)
  • 2nd AJAX request completes, result is shown.

So, to summarize the issue, you need to determine which tab the URL is requesting prior to the Tabs plugin initializing the content for any tab. It should just grab tab #3 if that's specified, whereas currently it grabs tab #1 then tab #3.

失而复得 2024-10-02 06:53:24

On removing initialIndex: 0, jsbin.com/ogilo/4#http://bit.ly/cKnMc2 work well on all browsers, just unfortunately is casing a new bug for IE7, IE6 after giving zero GET request for jsbin.com/ogilo/4

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