Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Laravel 构建我的网站。我安装了独白库来保持日志记录。我想记录点击事件。我怎样才能做到这一点?请帮忙。
点击发生在前端。
如果您想记录每个页面加载(PHP 调用),您可以使用App::beforeinapp/filters.php记录每个请求。更多信息请点击此处。
App::before
app/filters.php
如果您想记录每次点击,您可能需要使用 Google Analytics 的事件跟踪。编写一些 JS 来处理所有点击事件并将它们发送到ga. 更多信息在这里。
ga