THEMEN×
Products variable
Die Variable „products“ kann nicht mithilfe von Verarbeitungsregeln festgelegt werden. Im Mobile-SDK müssen Sie eine spezielle Syntax im Kontextdatenparameter verwenden, um Produkte direkt im Server-Aufruf festzulegen.
To set the
products
variable, set a context data key to
"&&products"
, and set the value using the syntax defined for the *
products
variable:
cdata["&&products"] = "Category;Product;Quantity;Price[,Category;Product;Quantity;Price]";
Beispiel:
//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["&&products"] = ";Running Shoes;1;69.95,;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);
The
products
is set directly on the image request, and the other variables are set as context data. Sämtliche Kontextdatenvariablen müssen mithilfe von Verarbeitungsregeln zugeordnet werden:

Sie müssen die
products
Variable nicht mithilfe von Verarbeitungsregeln zuordnen, da sie direkt auf der Bildanforderung des SDK eingestellt wird.
Products variable with merchandising eVars and product-specific events
An example of the
products
variable with Merchandising eVars and product-specific events.
//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);
Wenn Sie ein produktspezifisches Ereignis mithilfe der
&&products
Variablen auslösen, müssen Sie dieses Ereignis auch in der
&&events
Variablen einstellen, da das Ereignis andernfalls während der Verarbeitung herausgefiltert wird.