1 埋代码
参考:https://developers.google.cn/gtagjs/reference/api?hl=zh-cn
<script async src="https://www.googletagmanager.com/gtag/js?id=统计id(在google 上创建)"></script>
<script>
window.dataLayer = window.dataLayer || [];
window.gtag = function(){
dataLayer.push(arguments);
}
window.gtag('js', new Date());
window.gtag('config', '统计id(在google 上创建)');
</script>
2 gtag() 可以处理 event和 config、set
参考:https://developers.google.cn/gtagjs/reference/parameter?hl=zh-cn#control_parameters
Control 参数
参数 | 值类型 | 示例值 | 说明 |
---|---|---|---|
groups | 字符串或字符串数组 | 'default,ga' | config 命令用其将目标分配给一个或多个组。 |
send_to | 字符串或字符串数组 | 'AW-CONVERSION_ID' | 设置要接收事件数据的目标帐号/媒体资源。 |
event_callback | 函数 | function() { form.submit(); } | 在 event 命令处理完成时调用的 JavaScript 回调函数。 |
event_timeout | 整数 | 2000 | 用于 event_callback 超时(以毫秒为单位)。 |
Event 参数
参数 | 值类型 | 示例值 | 说明 |
---|---|---|---|
checkout_option | 字符串 | 'Visa' | 用于电子商务事件 |
checkout_step | 整数 | 2 | 用于电子商务事件 |
content_id | 字符串 | 'article-8704' | 内容 ID(针对特定上下文) |
content_type | 字符串 | 'article' | 所选内容的类型 |
coupon | 字符串 | 'spring_fun' | 可购买商品的优惠券代码 |
currency | 字符串 | 'USD' | 用 3 个字母表示的 ISO_4217 格式的购买所用币种 |
description | 字符串 | ||
fatal | 布尔值 | FALSE | 用于异常跟踪 |
items | 数组 | 一系列商品(通常是产品列表)。用于电子商务事件。 | |
items[].brand | 字符串 | 'Google' | 商品的品牌 |
items[].category | 字符串 | '服饰/T 恤' | 商品类别 |
items[].creative_name | 字符串 | 'spring_banner_2' | 使用的广告素材的名称 |
items[].creative_slot | 字符串 | 'banner_slot_1' | 广告素材位置的名称 |
items[].id | 字符串 | 'P12345' | 商品的唯一 ID/SKU |
items[].location_id | 字符串 | 'Mountain View' | 商品的位置 |
items[].name | 字符串 | 'Android Warhol T 恤' | 商品名称 |
items[].price | 货币 | '29.2' | 商品的购买价格 |
items[].quantity | 整数 | 2 | 商品数量 |
method | 字符串 | 'Google' | 用于登录、注册和共享方法 |
name | 字符串 | 针对特定上下文的值 | |
promotions | 数组 | 一系列促销商品(通常是产品列表)。 | |
promotions[].creative_name | 字符串 | 'summer_banner_2' | 使用的广告素材的名称 |
promotions[].creative_slot | 字符串 | 'banner_slot_1' | 广告素材位置的名称 |
promotions[].id | 字符串 | 'promotion8' | 促销 ID |
promotions[].name | 字符串 | '八折' | 促销名称 |
screen_name | 字符串 | 必需的 screen_view 事件参数(以及 app_name)。 | |
search_term | 字符串 | '手表' | 用户输入的搜索字词 |
shipping | 货币 | '5.99' | 交易的运费 |
tax | 货币 | '2.43' | 交易的税额 |
transaction_id | 字符串 | 'T12345' | 交易 ID |
value | 数值 | 22 | 与事件相关的价值(即收入) |
网友评论