0
我一直在搜索谷歌,但真的沒有答案。也許任何你們這裏的知道:將以下工作代碼:我可以在ec.js(Google Analytics)的setAction中設置自定義維度嗎?
ga('ec:setAction', 'purchase', { // Transaction details are provided in an actionFieldObject.
'id': 'T12345', // (Required) Transaction id (string).
'affiliation': 'Google Store - Online', // Affiliation (string).
'revenue': '37.39', // Revenue (currency).
'tax': '2.85', // Tax (currency).
'shipping': '5.34', // Shipping (currency).
'coupon': 'SUMMER2013', // Transaction coupon (string).
'dimension1': 'custom1',
'dimension2': 'custom2'
});
我的意思是,如果自定義維度可以在這裏的setAction內或未設置?
感謝您的幫助。
是的,這聽起來很合理 - 它可能是一個命中範圍的維度,所以我可以將它設置爲setAction,因爲它具有相同的效果會更可靠。謝謝! – RLaczynski