jQuery UI 选项卡 - 还记得最后一个没有 cookie 的选项卡吗?

发布于 2024-12-01 09:18:29 字数 446 浏览 1 评论 0原文

所以,我有一个使用 jQuery 选项卡的页面。我已将其设置为记住使用 cookie 选择的最后一个选项卡。一切工作正常,但有人担心使用 cookie 的开销。

我们需要记住最后一个选项卡,即使有人去了不同的页面然后又回来了。

除了 cookie 之外,还有其他解决方案可以记住最后一个选项卡,并且可以与 jQuery UI 选项卡配合良好吗? (即 URL 字符串查询、隐藏表单字段?)。如果您离开页面并返回,其他“可能的技术”似乎将不起作用。我错过了什么吗?

编辑: 根据下文,我个人并不担心 <50 字节 cookie,但团队中的其他一些人则担心。这是一个非常繁忙的网站,拥有大量数据,因此任何额外的负载总是会引起人们的注意。我认为值得关注的是,这个 cookie 会随着每个服务器请求而传递,即使它只在整个站点的一个页面上使用/需要。我想另一个选择是将其存储在我们的服务器端会话中,但这真的更好吗(服务器影响方面)?

So, I have a page using jQuery tabs. I've got it set up to remember the last tab selected using cookies. All is working fine, but there is some concern about the overhead using cookies.

We need to remember the last tab, even if someone went to a different page and came back.

Is there another solution to remember the last tab, apart from cookies, that will work well with jQuery UI tabs? (ie, URL string query, hidden form fields?). It seems the other "possible techniques" won't work if you leave the page and come back. Am I missing anything?

EDIT:
Per the below, I'm not concerned about the <50 byte cookie personally, but some others on the team are. It is a very busy site, with huge amounts of data, so any extra load always raises an eyebrow. I think the concern was that this cookie will get passed with every server request, even though it's only used/needed on one page in the whole site. The other option is to store it in our server side session I suppose, but is this really better (server impact-wise)?

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

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

发布评论

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

评论(1

感性 2024-12-08 09:18:29

据我从您的问题中了解到,您将需要以某种方式保留数据..以便当用户重新访问页面时,您可以向他显示最后一个选项卡。会议是一个很好的方法。并且此信息只会在服务器端增加少量内存占用。

As i understand from your question, you will need to persist the data somehow.. so that when user revisits the page,you can show him the last tab. Sessions are a good way to do it. And this info will only add a small memory footprint on the server side.

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