我在我的 PDP 和购物车页面上以以下格式编写了数据层,以便在 Adobe DTM for Adobe Analytics 中使用。
<script>
var datalayer = {
transaction: {
transactionID: “<Transaction-ID>”,
zipCode: “<Zipcode>”,
paymentMethod: “<Payment Type>”,
shippingMethod: “<Ship-Method>”,
shippingCity: “<City>”,
shippingState: “<State>”,
total: {
basePrice: <base-amount>,
},
item: [{
productInfo: {
productName: " <product-name> ",
productID: "<product-id>",
productCategory: “<product-category>”,
producQuantity: <Quantity>,
basePrice: <Price>,
},
},
{
productInfo: {
productName: " <product-name> ",
productID: "<product-id>",
productCategory: “<product-category>”,
producQuantity: <Quantity>,
basePrice: <Price>,
},
]}
}
};
</script>
我想为 GA 增强型电子商务跟踪重用相同的数据层。我去了 GTM 帮助,他们为 GTM 的数据层定义了某种格式。请帮助如何使用上述代码实现增强的电子商务跟踪。