您可以設定 Google 代碼安裝作業,將資料傳送至特定帳戶或產品群組。您可以在同一個程式碼區塊中設定完整的 Google 成效評估產品成效評估解決方案。本指南說明如何設定 Google 代碼,以便使用 send_to
和 groups
參數將資料傳送至特定產品、帳戶和設定。
預設路徑
Google 代碼包含 config
指令,用於處理路由。舉例來說,如果您安裝含有代碼 ID的 Google 代碼,以下程式碼片段會將資料傳送至 Google Analytics 4 和/或 Google Ads 帳戶:
gtag('config', 'TAG_ID');
您可以將 send_to
參數新增至 event
指令,藉此覆寫 Google 代碼中指定的路由 (或網頁上先前的任何路由指示)。
舉例來說,無論先前在網頁上設定的目標為何,系統都只會將下列 sign_in
事件傳送至具有目的地 ID 'G-XXXXXX-2'
的 Google Analytics 資源。
gtag('event', 'sign_in', { 'send_to': 'G-XXXXXX-2' });
群組
有時候,您可能需要將某些資訊傳送至一組帳戶或產品,然後將其他資訊傳送至另一組帳戶或產品。舉例來說,您可能想要將特定行銷廣告活動的相關資訊傳送給廣告代理商,同時為機構保留更完整的資料。此功能可使用 groups
整理。
您可以建立一組目標 (例如產品、帳戶和資源),然後將事件轉送至該群組。
在以下範例中,兩個 Google Analytics 資源會新增至名為 group1
的群組。然後,sign_in
事件會轉送至該群組中的兩個屬性。
gtag('config', 'G-XXXXXX-1', { 'groups': 'group1' });
gtag('config', 'G-XXXXXX-2', { 'groups': 'group1' });
// Routes to 'G-XXXXXX-1' and 'G-XXXXXX-2'
gtag('event', 'sign_in', { 'send_to': 'group1' });
預設群組
如果未設定 send_to
參數,事件會導向 default
目標群組。default
群組會納入事件前執行的網頁上 config
指令中的所有產品和帳戶。即使未在 config
指令中指定 groups
參數,目標仍會指派給 default
群組。
// The following two lines are equivalent:
gtag('config', 'G-XXXXXX-1');
gtag('config', 'G-XXXXXX-1', { 'groups': 'default' });
下一個範例說明無論是否指定 {'send_to : 'default'}
,事件都會傳送至 default
群組。
// Configure a target
gtag('config', 'G-XXXXXX-1');
// Since send_to is not specified, this routes to the 'default' group which
// includes 'G-XXXXXX-1', as defined in config, above.
gtag('event', 'sign_in');
// By default, routes to the 'default' groups which includes
// 'G-XXXXXX-1', as defined in config, above.
gtag('event', 'generate_lead', { 'send_to': 'default' });
路由至自訂 groups
您可以使用 groups
,找出應將特定資料傳送至特定 ID 的資料。以下程式碼範例說明如何將 sign_in
事件資料路由至名為 agency
的自訂群組。
// Configure a target
gtag('config', 'G-XXXXXX-1');
gtag('config', 'G-XXXXXX-3', { 'groups': 'agency' });
gtag('config', 'G-XXXXXX-9', { 'groups': 'agency' });
// Routes only to 'G-XXXXXX-3' and 'G-XXXXXX-9' since they
// are both in the 'agency' group
gtag('event', 'sign_in', { 'send_to': 'agency' });
範例:一併設定 Google Ads、Analytics 和 Floodlight
您可以在同一個 Google 代碼中,為 Google Ads、Google Analytics 和 Floodlight 建立完整設定。以下範例說明組合標記可能的樣貌。這個範例:
- 將網頁瀏覽資料傳送至 Google Analytics
- 評估 Google Ads 和 Floodlight 轉換
- 將加入購物車的商品資訊傳送至 Analytics 和 Google Ads
<script async src="https://www.googletagmanager.com/gtag/js?id=TAG_ID">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// Global configs
gtag('config', 'TAG_ID');
gtag('config', 'DC-ZZZZZZ');
// Measure Google Ads conversions
gtag('event', 'conversion', {
'send_to': 'AW-YYYYYY/AbC-D_efG-h12_34-567',
'value': 1.0,
'currency': 'USD'
});
// Measure Floodlight conversions
gtag('event', 'conversion', {
'allow_custom_scripts': true,
'send_to': 'DC-ZZZZZZ/actions/locat304+standard'
});
// Route ecommerce add_to_cart event to Google Ads and Analytics
gtag('event', 'add_to_cart', {
'send_to': [
'G-XXXXXX-1',
'AW-YYYYYY'
],
'items': [
'id': 'U1234',
'ecomm_prodid': 'U1234',
'name': 'Argyle Funky Winklepickers',
'list': 'Search Results',
'category': 'Footwear',
'quantity': 1,
'ecomm_totalvalue': 123.45,
'price': 123.45
]
});
</script>