Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简单地说,在 Pyramid 中,当有人请求页面时,例如:
/foo/#bar
如何找出锚点是什么?在这种情况下,它将是bar。这似乎应该是微不足道的,但我不确定如何在 Pyramid 中检索这些信息。
bar
request.current_route_path(),request.url并且request.path只会/foo/在这种情况下返回。
request.current_route_path()
request.url
request.path
/foo/
(Pyramid 实际上完全没有意识到这一点吗?也许服务器根本就不会收到这些信息,而我直到现在才意识到这一点)
客户端永远不会将片段发送到服务器;您将需要使用 JavaScript 在客户端处理它。