jquery 和 url 中的 #sybmol(和 ajax)

发布于 2024-09-09 06:58:10 字数 412 浏览 5 评论 0原文

因此,我有一个简单的页面,其中包含不同的方法来过滤数据(几乎一切都正常)。例如,您有一个包含用户列表的页面。您可以选择页码,可以选择排序依据(以及排序方向)以及每页有多少结果。

它的工作方式是每当这些变量之一发生更改时,我让 jquery 使用 POST ajax 从服务器获取表数据(传递变量,以便我的服务器可以正确获取数据)。

我想知道的一件事是如何使用 url 来帮助解决这个问题。我希望能够以额外的方式限制数据。例如,如果您正在查看“example.com/users/index#topvisitors”,则服务器仅发回排名靠前的访问者列表,或者“example.com/users/index#bannedusers”可能会返回所有被禁止的用户。

最后,我真的只需要一种 url 的方法来帮助我的服务器返回更具体的数据集 有

想法吗?

So I've got a simple page with different ways to filter the data (almost everything is working.) For example, you have a page with a list of the users. You can choose a page number, you can choose what to sort by (and what direction to sort in) and how many results per page.

The way it works is whenever one of those variables are changed, I have jquery use POST ajax to get the table data from the server (passing the vars so my server can get the data correctly).

One thing I'm wondering is how to use the url to help with this. I want to be able to limit data in an additional way. For example, if you're viewing "example.com/users/index#topvisitors" then the server only sends back a list of the top visitors or "example.com/users/index#bannedusers" might return all banned users.

In the end, I really just need a way for the url to help my server return a more specific data set

Ideas?

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

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

发布评论

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

评论(1

埋葬我深情 2024-09-16 06:58:10

您始终可以使用 window.location.hash 来获取当前锚点,然后将该值作为参数传递给服务器端脚本。

You could always use window.location.hash to get the current anchor, then pass that value as a parameter to your server-side script.

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