PV日志埋点参数包含应用开发管理平台appId、应用开发管理平台应用名称、经度、纬度和用户类型。
1、先根据ZWJSBridge.getLocation获取经纬度
复制代码ZWJSBridge.onReady(() => {
console.log("初始化完成后,执行bridge方法");
});
ZWJSBridge.getLocation().then((result) => {
console.log('获取经纬度', result);
this.latitudeStr = result.latitude;
this.longitudeStr = result.longitude;
}).catch((error) => {
console.log(error);
});
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
2、根据ZWJSBridge.getUserType获取用户类型
复制代码ZWJSBridge.getUserType().then((result) => {
console.log('用户类型', result);
if(result.userType==0 || result.userType==1){
this.userTypeStr='个人';
}else{
this.userTypeStr='企业';
}
}).catch((error) => {
console.log(error);
});
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
2、写入埋点
复制代码aplus_queue.push({
'action': 'aplus.sendPV',
'arguments': [{
is_auto: false
}, {
// 定义PV参数key-value键值对(只能是这种平铺的json,不能做多层嵌套), 如:
miniAppId: '应用开发管理平台appId',
miniAppName: '应用开发管理平台应用名称',
long: this.longitudeStr,
lati: this.latitudeStr,
userType: this.userTypeStr
}]
});
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
浙里办小程序window.open失效解决方法(ios系统)
上面是“浙里办获取PV日志参数埋点”的全面内容,想了解更多关于 前端知识 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_1460.html
workflows工作流
一幅生动而古怪的时尚鸭子插图ComfyUI工作流
迷人的月光,发光的花朵
一群蜜蜂和一个六边形蜂巢ComfyUI工作流
一位美丽的女士在座机上讲话ComfyUI工作流
一只外星甲壳虫子ComfyUI工作流
去掉背景(抠图)comfyui工作流
一个戴着破旧莎帽子的机械忍者站在冰林中
海中一头鲸鱼ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!