如何在没有 JavaScript 的情况下记录用户通过赞助商链接的点击

发布于 2024-12-03 21:39:50 字数 182 浏览 1 评论 0原文

我正在用java开发网站。

网站包含一些文本和赞助链接。

我需要在没有 JavaScript 的情况下跟踪用户点击赞助商链接。

怎样才能做到这一点呢?

PS:赞助商链接提供商的要求是直接重定向到那里的服务器,而不需要我们的 servlet 或过滤器。

I'm developing web site on java.

Site contains some texts and sponsored links.

I need to traced user click by sponsored links without javascript.

How can do that?

PS: Requirement of sponsored links provider is redirect to there server directly without us servlets or filters.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

捎一片雪花 2024-12-10 21:39:50

使链接指向一个 servlet(或类似的),该 servlet 将用户重定向到正确的网站并计算该 servlet 中的重定向数

make the links point to a servlet ( or similar ) that redirects the user to the correct website and count the redictions in that servlet

梦里南柯 2024-12-10 21:39:50

过去,我使用 JavaScript 函数调用 servlet 来跟踪链接。必须首先进行日志记录才能确保其运行。日志记录调用不需要同步,甚至不需要检查响应。这是一些伪代码:

SITE.logSite = function(url){
    //code here to call the servlet
}

SITE.redirectSite = function(url){
    location.href=url;
}

SITE.doLogAndRedirect = function(url){
    this.logSite(url);
    this.redirectSite(url);
}

In the past, I have used a javascript function to call a servlet to track the links. Logging has to come first to be sure it is run. The logging call doesn't need to be synchronous or even check for a response. Here is some pseudo-code:

SITE.logSite = function(url){
    //code here to call the servlet
}

SITE.redirectSite = function(url){
    location.href=url;
}

SITE.doLogAndRedirect = function(url){
    this.logSite(url);
    this.redirectSite(url);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文