gpt4 book ai didi

javascript - 是否可以在使用电子商务扩展时将自定义变量发送到 Google Analytics

转载 作者:行者123 更新时间:2023-11-30 12:30:38 25 4
gpt4 key购买 nike

所以基本上我试图在使用电子商务扩展时通过谷歌分析面板获取自定义变量。我的主要目标是为每个项目提供一组自定义值。

我的“代码”是这样的:

ga('require', 'ecommerce');
ga('ecommerce:addTransaction', {
'id': 'id',
'affiliation': 'affiliation',
});
ga('ecommerce:addItem', {
'id': 'id',
'name': 'Loan - name',
'sku': '{RIDA:success_loan_id}',
'loanSumEur': 'Sum',
'loanSumLit': 'Sum LTL',
'loanLength': 'length',
'loanData': 'data'
});
ga('ecommerce:send');
ga('ecommerce:clear');

我应该如何声明这些 loanSumEur、loanSumLit、loanlength、loanData 变量,以便 Google 将它们传递给 Google Analytics 管理面板。有可能吗?

为网站跟踪声明自定义变量非常容易,但是我在尝试对交易项目做同样的事情时遇到了一点困难。

BR

最佳答案

是的,可以使用自定义维度和指标。

ga('ec:addProduct', {               // Provide product details in an productFieldObject.
'id': 'P12345', // Product ID (string).
'name': 'Powerup', // Product name (string).
'category': 'Extras', // Product category (string).
'variant': 'red', // Product variant (string).
'price': '10.00', // Product price (currency).
'quantity': 2, // Product quantity (number).
'dimension4': 'strong', // Product-scoped custom dimension (string).
'metric2': 5 // Product-scoped custom metric (integer).
});
ga('ec:setAction', 'purchase', {
'id': 'T12345',
'revenue': '20.00'
});

ga('send', 'pageview'); // Send transaction data with initial pageview.

参见:Custom Dimensions & Metrics - Product-level scope

关于javascript - 是否可以在使用电子商务扩展时将自定义变量发送到 Google Analytics,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27821900/

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