我已经获得了在我的电子商务网站中跟踪1个项目所需的代码。
代码:
// Called when a product is added to a shopping cart.
function addToCart(product) {
ga('ec:addProduct', {
'id': product.id,
'name': product.name,
'category': product.category,
'brand': product.brand,
'variant': product.variant,
'price': product.price,
'quantity': product.qty
});
ga('ec:setAction', 'add');
ga('send', 'event', 'UX', 'click', 'add to cart'); // Send data using an event.
}
我只需要将我的字符串名称添加到id,name,category等中。
我希望在这个代码中添加多个元素,我需要一个循环还是可以这样做:
// Called when a product is added to a shopping cart.
function addToCart(product) {
ga('ec:addProduct', {
'id1': product.id1,
'id2': product.id2,
'id3': product.id3,
'id4': product.id4,
ADD ALL OTHER ELEMENTS
});
ga('ec:setAction', 'add');
ga('send', 'event', 'UX', 'click', 'add to cart'); // Send data using an event.
}
任何帮助都会很棒。请记住,我是编写代码的新手,并想知道这是否能正常运行。
由于
答案 0 :(得分:0)
你必须有单独的" addProduct"阻止购物车中的每件商品