如何从 Django Request 对象访问 url 哈希/片段

发布于 2024-08-19 18:32:56 字数 342 浏览 3 评论 0原文

如标题所示:如何从 Django 视图访问 URL 哈希/片段(哈希 # 后面的部分,或美国英语中的“英镑符号”),因此,我想,从Django 请求对象?

我没有找到有关此处可用文档的足够信息: http://docs .djangoproject.com/en/dev/ref/request-response/

PS 假设该片段包含在发送到服务器的 URL 中。 (我已经在我的例子中验证了这一点,我实际上并没有使用浏览器。)

As in the title: How can I access the URL hash/fragment (the part following the hash #, or 'pound symbol' in US English) from a Django view and so, I suppose, from a Django Request object?

I've not found enough information on the documentation here available: http://docs.djangoproject.com/en/dev/ref/request-response/

P.S. Assume the fragment is included in the URL sent to the server. (I have verified this in my case, where I'm not actually using a browser.)

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

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

发布评论

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

评论(1

Hello爱情风 2024-08-26 18:32:56

根据定义,这不会发送到服务器。来自 URI 参考:URI 上的片段标识符

“HTTP 引擎无法对此做出任何假设。服务器甚至没有给出它。”

This is not sent to the server, by definition. From URI References: Fragment Identifiers on URIs :

"The HTTP engine cannot make any assumptions about it. The server is not even given it."

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