Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
5a79fd22
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
5a79fd22
编写于
10月 21, 2024
作者:
M
mehaotian
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(stat): 暂时隐藏统计入口
上级
2f1b6627
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
46 addition
and
46 deletion
+46
-46
App.uvue
App.uvue
+37
-37
main.uts
main.uts
+9
-9
未找到文件。
App.uvue
浏览文件 @
5a79fd22
...
@@ -48,15 +48,15 @@
...
@@ -48,15 +48,15 @@
// } as PerformanceObserverOptions)
// } as PerformanceObserverOptions)
// 统计上报 - 应用启动
// 统计上报 - 应用启动
uni.report({
//
uni.report({
name: 'uni-app-launch',
//
name: 'uni-app-launch',
options: res,
//
options: res,
success(res_data) {
//
success(res_data) {
console.log(res_data);
//
console.log(res_data);
}, fail(err) {
//
}, fail(err) {
console.log(err);
//
console.log(err);
}
//
}
})
//
})
// #ifdef APP
// #ifdef APP
if (process.env.NODE_ENV !== 'development') { //真机运行可以注释此条件
if (process.env.NODE_ENV !== 'development') { //真机运行可以注释此条件
uni.getPrivacySetting({
uni.getPrivacySetting({
...
@@ -87,14 +87,14 @@
...
@@ -87,14 +87,14 @@
console.log('App Show')
console.log('App Show')
// 统计上报 - 应用显示
// 统计上报 - 应用显示
uni.report({
//
uni.report({
name: 'uni-app-show',
//
name: 'uni-app-show',
success(res_data) {
//
success(res_data) {
console.log(res_data);
//
console.log(res_data);
}, fail(err) {
//
}, fail(err) {
console.log(err);
//
console.log(err);
}
//
}
})
//
})
},
},
onHide: function () {
onHide: function () {
// 自动化测试
// 自动化测试
...
@@ -102,14 +102,14 @@
...
@@ -102,14 +102,14 @@
console.log('App Hide')
console.log('App Hide')
// 统计上报 - 应用进入后台
// 统计上报 - 应用进入后台
uni.report({
//
uni.report({
name: 'uni-app-hide',
//
name: 'uni-app-hide',
success(res) {
//
success(res) {
console.log(res);
//
console.log(res);
}, fail(err) {
//
}, fail(err) {
console.log(err);
//
console.log(err);
}
//
}
})
//
})
},
},
// #ifdef APP-ANDROID
// #ifdef APP-ANDROID
onLastPageBackPress: function () {
onLastPageBackPress: function () {
...
@@ -133,18 +133,18 @@
...
@@ -133,18 +133,18 @@
onExit() {
onExit() {
console.log('App Exit')
console.log('App Exit')
},
},
onError(err : any) {
//
onError(err : any) {
// 统计上报 - 应用发生错误
//
// 统计上报 - 应用发生错误
uni.report({
//
uni.report({
name: 'uni-app-error',
//
name: 'uni-app-error',
options: err,
//
options: err,
success(res) {
//
success(res) {
console.log(res);
//
console.log(res);
}, fail(err) {
//
}, fail(err) {
console.log(err);
//
console.log(err);
}
//
}
})
//
})
},
//
},
// #endif
// #endif
methods: {
methods: {
increasetLifeCycleNum() {
increasetLifeCycleNum() {
...
...
main.uts
浏览文件 @
5a79fd22
// 仅测试 console.log 时机问题
// 仅测试 console.log 时机问题
import './test-main-console.uts'
import './test-main-console.uts'
import { uniStat } from '@/uni_modules/uni-stat/plugin.uts'
//
import { uniStat } from '@/uni_modules/uni-stat/plugin.uts'
import App from './App.uvue'
import App from './App.uvue'
import { createSSRApp } from 'vue'
import { createSSRApp } from 'vue'
// 统计配置
// 统计配置
const collectItems = {
//
const collectItems = {
uniStatPageLog: true
//
uniStatPageLog: true
}
//
}
const statOptions = {
//
const statOptions = {
debug: false,
//
debug: false,
collectItems: collectItems,
//
collectItems: collectItems,
}
//
}
export function createApp() {
export function createApp() {
const app = createSSRApp(App)
const app = createSSRApp(App)
app.use(uniStat, statOptions)
//
app.use(uniStat, statOptions)
// app.mixin({
// app.mixin({
// onReady() {
// onReady() {
// setTimeout(() => {
// setTimeout(() => {
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录