我正在尝试使用javascript创建像素跟踪器,并在url中包含了必要的参数,并包括了以下内容:
img src="/Documents/myimg.gif?utm_source="myfile"
现在,我无法理解如何使用java访问servlet上的参数。 有人可以帮我吗?
答案 0 :(得分:0)
我对Java servlet没有扎实的知识,但我相信相同的想法会奏效。
在PHP中,我只创建一个带有脚本的目录,该脚本返回内容类型image / *,例如
/Document/index.php
具有以下内容
<?php
$getVar=$_GET;
// do the necessary with the get vars
header('Content-Type:image/jpg');// you can adjust the content type accordingly
/* this is the image url. you can use
.htaccess and get this as the last parameter of the url just like in your question */
readfile('myimg.gif');
要使该URL像您当前所拥有的那样-.htaccess将有助于重写该URL,使其看起来几乎像任何东西,甚至可以使用switch
语句或if
进行多个图像/操作后端
<img src="/Documents/myimg.gif?utm_source="myfile"/>
同样是针对PHP,但您应该有个主意。