# burialPoint
发送埋点数据,自动添加 DivisionName 公共参数
# 请求参数
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
pageName | String | Y | - | 页面名称 |
actionType | String | Y | - | 操作类型 |
subAction | String | Y | - | 子操作 |
action_result | String | N | '' | 操作结果 |
# 参数代码示例
// 埋点数据
this.$bridge.burialPoint({
pageName: 'discoverHomePage',
actionType: 'discover',
subAction: 'content_click',
action_result: JSON.stringify(param)
})
// 或者传递对象
this.$bridge.burialPoint(item.eventParams)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10