在 url 中使用 hash 时如何获取 url 参数

发布于 2024-12-11 01:21:10 字数 614 浏览 0 评论 0原文

我正在使用带有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 技术交流群。

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

发布评论

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

评论(2

橘味果▽酱 2024-12-18 01:21:10

# 之后的部分不会发送到服务器。

(它的最初目的是引用文档的一部分,以便 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.)

我不吻晚风 2024-12-18 01:21:10

像这样形成您的请求:

var url = 'http://example.com/#/example/104?v=0&d=a&rpp=10';
new Ajax.Request(url, {
    parameters: url.match(/\?(.*)/)[1]
});

Form your request like this:

var url = 'http://example.com/#/example/104?v=0&d=a&rpp=10';
new Ajax.Request(url, {
    parameters: url.match(/\?(.*)/)[1]
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文