1

我的疑问是我们是否需要将名称和值传递给该脚本,否则我们可以提供将存储在 Google Analytics Server 中的任何名称和值?

_gaq.push(['_setCustomVar',
          1,                   // This custom var is set to slot #1.  Required parameter.
          'Items Removed',     // The name acts as a kind of category for the user activity.  Required parameter.
          'Yes',               // This value of the custom variable.  Required parameter.
          2                    // Sets the scope to session-level.  Optional parameter.
       ]);
     _gaq.push(['_trackEvent',
          'Shopping', // category of activity
          'Item Removal', // Action
       ]);
4

1 回答 1

0

自定义变量的名称和值的格式非常自由,但我建议坚持使用字母数字。我从未尝试过元字符。

于 2012-11-08T02:43:32.310 回答