在 url 中使用 hash 时如何获取 url 参数
我正在使用带有prototypejs的URL中的哈希值的AJAX。
当我使用以下 URL 时:
http://example.com /#/example/104?v=0&d=a&rpp=10
print_r( $_GET ); // output: array()
当我使用以下 URL 时:
http://example.com/example/104?v=0&d =a&rpp=10
print_r( $_GET ); // output: Array ( [v] => 0 [d] => a [rpp] => 10 )
所以我的问题是为什么在 URL 中使用哈希时无法获取 URL 参数。我怎样才能得到它。
谢谢
I am using AJAX with hash in URL with prototypejs.
When I use following URL:
http://example.com/#/example/104?v=0&d=a&rpp=10
print_r( $_GET ); // output: array()
When I use following URL:
http://example.com/example/104?v=0&d=a&rpp=10
print_r( $_GET ); // output: Array ( [v] => 0 [d] => a [rpp] => 10 )
So my question why I am not able to get URL params when using hash in URL. How can I get it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
#
之后的部分不会发送到服务器。(它的最初目的是引用文档的一部分,以便 URL 可以加载文档,然后滚动到特定部分。您可以看到在这种情况下将其发送到服务器是无关紧要的。)
The part after the
#
doesn't get sent to the server.(Its original purpose was to refer to a piece of the document, so that a URL could load a document and then scroll to a particular section. You can see how sending it to the server would be irrelevant in that case.)
像这样形成您的请求:
Form your request like this: