主題×
Products variable
您無法透過處理規則設定產品變數。在行動 SDK 中,您必須在內容資料參數中使用特殊語法,以直接在伺服器呼叫上設定產品。
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]";
例如:
//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. 所有內容資料變數都必須透過處理規則對應:

You do not need to map the variable using processing rules since it is set directly on the image request by the SDK.
products
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);
如果您使用變數觸發產品特定事
&&products
件,您也必須在變數中設定該事件,否
&&events
則在處理期間會篩選掉該事件。