jquery 和 url 中的 #sybmol(和 ajax)
因此,我有一个简单的页面,其中包含不同的方法来过滤数据(几乎一切都正常)。例如,您有一个包含用户列表的页面。您可以选择页码,可以选择排序依据(以及排序方向)以及每页有多少结果。
它的工作方式是每当这些变量之一发生更改时,我让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以使用 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.