1
14
您可以在GA中使用自定义变量来跟踪不同类型的用户。有关更多信息,请参阅GA文档中的这个示例。 http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html#examples 我会这样做: pageTracker._setCustomVar( 1, // This custom var is set to slot #1 "User Type", // The name of the custom varaible "Guest", // Sets the value of "User Type" to "Guest" for non registered users 2 // Sets the scope to session-level ); pageTracker._trackPageview(); pageTracker._setCustomVar( 1, "User Type", "Registered User", 2 ); pageTracker._trackPageview();
现在你应该可以看到
希望这有帮助。 |
2
2
|
wnvko · 通过节点http发布到Google Analytics 6 年前 |