我可以在服务器端应用程序(PHP,Ruby,Python等)上读取URL的哈希部分吗?


217

假设网址为:

www.example.com/?val=1#part2

PHP可以val1使用GET数组读取请求变量。

哈希值part2也可读吗?还是仅取决于浏览器和JavaScript?

Answers:


203

主要问题是浏览器甚至不会发送带有片段部分的请求。片段部分在浏览器中已解决。因此可以通过JavaScript到达。

无论如何,您可以使用parse_url()将URL解析为包括片段部分在内的位,但这显然不是您的情况。


98

简单测试,访问http:// localhost:8000 / hello?foo = bar#this-is-not-sent-to-server

python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"
Serving HTTP on 0.0.0.0 port 8000 ...
localhost - - [02/Jun/2009 12:48:47] code 404, message File not found
localhost - - [02/Jun/2009 12:48:47] "GET /hello?foo=bar HTTP/1.1" 404 -

服务器接收到的请求没有#附录-哈希标记只是客户端上的锚查找之后的所有内容。

您可以通过javascript找到URL中使用的锚点名称,例如:

<script>alert(window.location.hash);</script>

如果您已经具有所需的URL字符串(包括片段(http://codepad.org/BDqjtXix)),则PHP中的parse_url()函数可以正常工作:

<?
echo parse_url("http://foo?bar#fizzbuzz",PHP_URL_FRAGMENT);
?>

Output: fizzbuzz

但是我认为PHP不会接收片段信息,因为它仅用于客户端。


48

可从Javascript-as检索window.location.hash。从那里,您可以将其发送到例如带有Ajax的服务器,或者对其进行编码并将其放入URL中,然后可以将其传递到服务器端。


1
谢谢!因此,要明确一点,而不是这样:www.example.com/?val=1#part2 您必须像这样在服务器上重定向到它: www.example.com/?redirectUrl=%2F%3Fval%3D1%23part2 当然,您必须添加支持以重定向到另一个页面中的另一个URL。不太好用,当然不适用于所有用例,但确实适用于书签。请注意,如果您这样做,则不应该允许重定向到绝对URL,仅允许相对URL,以确保您不会对不安全的重定向
Brad Parks


8

是的,这是真的,服务器没有锚点。但是,有一种使用cookie的解决方法。您可以在这里找到它:http : //www.stoimen.com/blog/2009/04/15/read-the-anchor-part-of-the-url-with-php/


2
这种“解决方法”毫无用处。如果您可以接受每页浏览2个请求的话,还有十多种更好的技术。
umassthrower 2012年

11
怎么会一文不值?这绝对不是毫无价值的。但是也许有更好的技术。
Kishor 2012年

有哪些更好的技术?对于我的Google oauth,我使用访问令牌哈希将其重定向到我的api页面,然后执行“ ajax初始化”,在此我呈现一个快速ajax脚本,该脚本将同一页面进行ajax,但这次使用哈希值作为请求参数。感觉很奇怪..也许有更好的方法,但是我所见过的所有方法似乎
都很拙劣

7

答案是不。

哈希的主要目的是滚动到页面上已定义书签的特定部分。例如,在页面加载时滚动到该部分。

浏览器将滚动,以使该行成为页面中的第一个可见内容,这取决于该行下方的内容。

是的,javascript可以访问它,然后一个简单的ajax调用就可以了。


4

关于什么:

动态抓取#hash

<script>
var urlhash = window.location.hash, //get the hash from url
    txthash = urlhash.replace("#", ""); //remove the #
    //alert(txthash);
</script>

<?php
$hash = "<script>document.writeln(txthash);</script>";
echo $hash;
?>

为了使其更流畅:

仅使用Javascript和PHP的完整示例

<script>
var urlhash = window.location.hash,  //get the hash from url
txthash = urlhash.replace("#", "");  //remove the #

function changehash(a,b){
   window.location.hash = b; //add hash to url
   //alert(b); //alert to test
   location.reload(); //reload page to show the current hash
}
</script>

<?php $hash = "<script>document.writeln(txthash);</script>";?>

<a onclick="changehash(this,'#hash1')" style="text-decoration: underline;cursor: pointer;" >Change to #hash1</a><br/>
<a onclick="changehash(this,'#hash2')" style="text-decoration: underline;cursor: pointer;">Change to #hash2</a><br/> 

<?php echo "This is the current hash: " . $hash; ?> 

PHP仍然没有获得哈希值。
Cornernote

甜蜜而短暂的解决方案。
Waruna Manjula

3

我认为哈希值仅用于客户端,因此您无法使用php获取它。

您可以使用javascript将其重定向到php。


1
<?php
$url=parse_url("http://domain.com/site/gallery/1?user=12#photo45 ");
echo $url["fragment"]; //This variable contains the fragment
?>

这应该工作


如果您使用字符串形式的url是很容易的,即使您使用reg exp解析它。问题是您无法从服务器访问#photo45(使用phpinfo(),并且在任何地方都看不到#photo45
Nik Chankov


1

是的你可以:

使用此方法来防止错误:

<script> 
query=location.hash;
document.cookie= 'anchor'+query;
</script>

当然,在PHP中,将那只小狗炸开并得到其中一个值

$split = explode('/', $_COOKIE['anchor']);
print_r($split[1]); //to test it, use print_r. this line will print the value after the anchortag

0

另一种解决方案是在php页面中添加一个隐藏的输入字段:

<input type="hidden" id="myHiddenLocationHash" name="myHiddenLocationHash" value="">

使用javascript / jQuery,您可以在页面加载或响应事件时设置此字段的值:

$('#myHiddenLocationHash').val(document.location.hash.replace('#',''));

在服务器端的php中,您可以使用$ _POST集合读取此值:

$server_location_hash = $_POST['myHiddenLocationHash'];

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.