小程序统计
介绍
小程序统计是基于中台移动端做的,所以无法在中台以外的平台使用统计。打开和关闭小程序,移动端会自动统计,开发者只能上班界面和自定义参数上报。
统计类型 | 介绍 | 参数类型 | 统计方式 |
---|---|---|---|
无 | 小程序开启 | string |
移动端自动上报 |
无 | 小程序关闭 | string |
移动端自动上报 |
pai_uni_statistics_activity |
小程序界面 | string |
小程序主动上报 |
pai_uni_statistics_custom |
小程序自定义参数 | string |
小程序主动上报 |
统计界面
pai_uni_statistics_activity
:界面统计类型statistics
:统计界面名称
//统计 - 界面
let statistics = "欢迎页"
uni.sendNativeEvent("pai_uni_statistics_activity", statistics, function(e) {
console.log("-->>>sendNativeEvent-----回调" + JSON.stringify(e));
});
统计自定义
pai_uni_statistics_custom
:自定义统计类型data
:统计的自定义数据,字符串类型
let data = '{"type":"click","des":"点击了欢迎页图标"}'
uni.sendNativeEvent("pai_uni_statistics_custom", data, function(e) {
console.log("-->>>sendNativeEvent-----回调" + JSON.stringify(e));
});
文档更新时间: 2022-04-22 14:04 作者:陈冕