如何在 Lift 中查找 URL 中的#fragment
我对 Lift 还很陌生,我一直在尝试寻找的一件事是如何在代码片段的上下文中找到当前页面 URL 中的“#”。因此,如果用户访问 http://www.example.com/some/path/page#stuff ,那么我想从中提取“内容”。我一直在谷歌上搜索 API 文档,但尚未找到任何相关内容。
I'm pretty new to Lift, and one of the things I've been trying to find is how to, in the context of a snippet, find the '#' in the current page's URL. So if a user visits http://www.example.com/some/path/page#stuff
then I would like to extract "stuff" from that. I've been googling and searching the API docs and have yet to find anything for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为
#
后面的部分首先不会发送到服务器。这就是 wikipedia 对此的说法:
I don't think the part behind the
#
ever gets sent to the server in the first place.That's what wikipedia has to say about it:
你是对的,先生。这就是哈希的全部要点。
Dylan,你可以从 Javascript 方面做一些事情:
You are correct, sir. That is the entire point of the hash.
Dylan, you could do something from the Javascript side: