gpt4 book ai didi

angularjs - ui-router 获取谷歌分析状态变化的当前路径

转载 作者:行者123 更新时间:2023-12-04 20:04:10 26 4
gpt4 key购买 nike

我正在尝试获取发送到谷歌分析的状态路径。有一些问题。我使用的是抽象状态,所以使用像 toState.url 这样的东西是行不通的,因为它不会获取整个 url。

我想在 $stateChangeSuccess 上使用 $window.location.pathname,但结果是在浏览器中更新 url 之前成功触发。这意味着网页浏览被发送 1 网页浏览太晚了。 IE。

click about: sends nothing
click contact: sends about url
click services: sends contact url

基本上最终结果应该是这样的,但是使用 toState url 或路径名:
$rootScope.$on("$stateChangeStart", function(event, toState, toParams, fromState, fromParams) {
var path = ???;
ga('send', 'pageview', path);
});

最佳答案

看起来您需要使用 $location 来获取新路径:

$rootScope.$on("$stateChangeSuccess", function(event, toState, toParams, fromState, fromParams) {
$window.ga('send', 'pageview', $location.path());
});

关于angularjs - ui-router 获取谷歌分析状态变化的当前路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27474803/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com