TÓPICOS×
Products variable with merchandising eVars and product-specific events
Um exemplo da variável products com eVars de merchandising e eventos específicos do produto.
//create a context data dictionary var cdata = new Windows.Foundation.Collections.PropertySet(); // add products, a purchase id, a purchase context data key, and any other data you want to collect. // Note the special syntax for products cdata["&&events"] = "event1 "; cdata["&&products"] = ";Running Shoes;1;69.95;event1=5.5;eVar1=Merchandising,;Running Socks;10;29.99"; cdata["m.purchaseid"] = "1234567890"; cdata["m.purchase"] = "1"; var ADB = ADBMobile; // send the tracking call - use either a trackAction or TrackState call. // trackAction example: ADB.Analytics.trackAction("purchase", cdata); // trackState example: ADB.Analytics.trackState("Order Confirmation", cdata);
If you trigger a product-specific event using the
&&products
variable, you must also set that event in the
&&events
variable, otherwise the event is filtered out during processing.