像素跟踪:在服务器端通过 <img src= " " /> 检索通过 URL 发送的参数



我正在尝试使用 javascript 创建一个像素跟踪器,并在 url 中包含必要的参数,并包含以下内容:

img src="/Documents/myimg.gif?utm_source="myfile"

现在,我无法理解如何使用java访问servlet上的参数。有人可以帮我解决这个问题吗?

我对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');

为了使网址与您当前拥有的一样 - .htaccess 将有助于重写网址,使其看起来几乎与任何东西相似,甚至可以使用后端switch语句或if执行多个图像/操作

<img src="/Documents/myimg.gif?utm_source="myfile"/>

同样,这是针对PHP的,但你应该有一个想法。

相关内容

  • 没有找到相关文章

最新更新