2016-06-13 125 views
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內或未設置?

感謝您的幫助。

回答

0

自定義維度設置在命中範圍(指個別操作),產品範圍(具有增強型E-Commcerce,可以說是命中範圍的特例),會話範圍(即指訪問中的所有綜合瀏覽量)或用戶範圍(指定期用戶的所有會話)。

沒有「setAction」-scope或類似的東西。我沒有測試過代碼,它甚至可能會意外運行,但即使如此,它仍然會以命中/會話/用戶範圍結束,具體取決於維度的後端設置,因此將毫無意義。

+0

是的,這聽起來很合理 - 它可能是一個命中範圍的維度,所以我可以將它設置爲setAction,因爲它具有相同的效果會更可靠。謝謝! – RLaczynski

相關問題