Google Analytics:_gaq.push 来自另一个数组的多个项目

发布于 2024-10-30 18:54:16 字数 403 浏览 0 评论 0 原文

我正在尝试将多个项目推送到 _gaq.push() 中以进行谷歌分析。

我有一个 Id 数组,我循环遍历它以创建要传递给 .push(); 的数组;

var gaDetails = new Array();
var productIdsArray = productIds.split(",");
for(var i = 0; i < productIdsArray.length; ++i)
    gaDetails.push(['_trackEvent', 'Quote', '' + step, '' + productIdsArray[i]]);

_gaq.push(gaDetails);

看起来每个数组周围都有一组额外的 [] 。也许我没有看到什么,但谷歌描述其语法的方式看起来有问题?

I'm triyng to push multiple items into the _gaq.push() for google analytics.

I have an array of Ids that im looping through to create the array to pass to .push();

var gaDetails = new Array();
var productIdsArray = productIds.split(",");
for(var i = 0; i < productIdsArray.length; ++i)
    gaDetails.push(['_trackEvent', 'Quote', '' + step, '' + productIdsArray[i]]);

_gaq.push(gaDetails);

It looks like theres an extra set of [] around each array. Maybe I'm not seeing something but the way google describes their syntax looks wrong?

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

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

发布评论

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

评论(2

瀞厅☆埖开 2024-11-06 18:54:16

您不需要另一个数组,当您使用它时,您也可以使用更快的循环。

var productIdsArray = productIds.split(","),
    i = productIdsArray.length;

while(i--)
{
   _gaq.push(['_trackEvent', 'Quote', '' + step, '' + productIdsArray[i]]);
}

you don't need the other array, and while you're at it you might as well use a faster loop.

var productIdsArray = productIds.split(","),
    i = productIdsArray.length;

while(i--)
{
   _gaq.push(['_trackEvent', 'Quote', '' + step, '' + productIdsArray[i]]);
}
找个人就嫁了吧 2024-11-06 18:54:16

正如 Ryan 的评论中提到的,Google 鼓励通过一次调用 _gaq.push 推送多个命令。

如果一个人有一组命令并希望将它们全部添加到 _gaq,则可以通过

_gaq.push.apply(_gaq, gaDetails);

Javascript 将数组值推送到另一个数组

为了提高性能,只需调用 _gaq.push 就可以了与每个元素。

As mentioned in the comment from Ryan, Google encourages to push an multiple commands via one call of _gaq.push

If one has an array of commands and wants to add them all to _gaq this can be achieved by

_gaq.push.apply(_gaq, gaDetails);

Got a clue from Javascript push array values into another array

For performance it's probably fine to just call _gaq.push with each element.

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