Rails 3 不显眼的 Javascript 搜索表单后退按钮
我正在使用不显眼的 javascript 来呈现来自 get 请求的搜索结果 - 搜索。
当用户关注某个搜索结果但不喜欢它时,他们需要能够回击并获得相同的结果。
我该如何解决这个问题?
I am using unobtrusive javascript to render search results from a get request -- a search.
When a user follows a search result and doesn't like it they need to be able to hit back and get to the same results.
How do I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用现代浏览器的 HTML5 History API 来在每次更改应用程序状态时更改 URL,然后调用当您想要捕获历史状态时,可以选择更改 URL 锚标记。前者的一个例子是使用 PJax 在 Github 中进行源代码导航,而 Twitter 就是后者的例子。
You can use the HTML5 History API for modern browsers to change the URL every time you change the application state, and you call fallback on changing the URL anchor tag when you want to capture a history state. An example of the former is source code navigation in Github using PJax and Twitter is the example of the latter.