Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
7fb1f62b
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看板
提交
7fb1f62b
编写于
8月 01, 2024
作者:
辛宝Otto
🥊
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 补充 getEnterOptionsSync 页面
上级
2670aa79
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
96 addition
and
1 deletion
+96
-1
pages.json
pages.json
+12
-1
pages/API/get-enter-options-sync/get-enter-options-sync.test.js
...API/get-enter-options-sync/get-enter-options-sync.test.js
+23
-0
pages/API/get-enter-options-sync/get-enter-options-sync.uvue
pages/API/get-enter-options-sync/get-enter-options-sync.uvue
+61
-0
未找到文件。
pages.json
浏览文件 @
7fb1f62b
...
...
@@ -551,6 +551,13 @@
"navigationBarTitleText"
:
"getLaunchOptionsSync | 获取启动参数"
}
},
{
"path"
:
"pages/API/get-enter-options-sync/get-enter-options-sync"
,
"group"
:
"1,1,4,1"
,
"style"
:
{
"navigationBarTitleText"
:
"getEnterOptionsSync | 获取启动参数"
}
},
{
"path"
:
"pages/API/navigator/navigator"
,
"group"
:
"1,2,0"
,
...
...
@@ -2075,6 +2082,10 @@
{
"id"
:
"api.base.launch.getLaunchOptionsSync"
,
"name"
:
"getLaunchOptionsSync"
},
{
"id"
:
"api.base.launch.getEnterOptionsSync"
,
"name"
:
"getLEnterOptionsSync"
}
]
},
...
...
@@ -2744,4 +2755,4 @@
]
}
]
}
\ No newline at end of file
}
pages/API/get-enter-options-sync/get-enter-options-sync.test.js
0 → 100644
浏览文件 @
7fb1f62b
const
PAGE_PATH
=
'
/pages/API/get-enter-options-sync/get-enter-options-sync
'
describe
(
'
getEnterOptionsSync
'
,
()
=>
{
it
(
'
getEnterOptionsSync
'
,
async
()
=>
{
const
page
=
await
program
.
navigateTo
(
PAGE_PATH
)
await
page
.
waitFor
(
'
view
'
)
await
page
.
callMethod
(
'
getEnterOptionsSync
'
)
const
data
=
await
page
.
data
()
expect
(
data
.
checked
).
toBe
(
true
)
})
it
(
'
app onShow 和 getEnterOptionsSync 结果一致
'
,
async
()
=>
{
const
page
=
await
program
.
navigateTo
(
PAGE_PATH
)
await
page
.
waitFor
(
'
view
'
)
const
res
=
await
page
.
callMethod
(
'
compareOnShowRes
'
)
if
(
process
.
env
.
uniTestPlatformInfo
.
toLowerCase
().
startsWith
(
'
android
'
))
{
// if android return
expect
(
true
).
toBe
(
true
)
}
expect
(
res
.
appOnShow
).
toEqual
(
res
.
onShowOption
)
})
})
pages/API/get-enter-options-sync/get-enter-options-sync.uvue
0 → 100644
浏览文件 @
7fb1f62b
<template>
<page-head title="getEnterOptionsSync"></page-head>
<view class="uni-padding-wrap">
<button @click="getEnterOptionsSync">getEnterOptionsSync</button>
<view v-if="enterOptionsPath.length > 0" class="uni-common-mt">
<text>应用启动路径:</text>
<text style="margin-top: 5px">{{ EnterOptionsPath }}</text>
</view>
</view>
</template>
<script lang="uts">
type OnShowReturn = {
appOnShow : OnShowOptions,
onShowOption : OnShowOptions
}
export default {
data() {
return {
checked: false,
homePagePath: 'pages/tabBar/component',
enterOptionsPath: '' }
},
methods: {
// 自动化测试
compareOnShowRes() : OnShowReturn {
// #ifdef APP-ANDROID
const res : OnShowReturn = {
appOnShow: {
path: ''
} as OnShowOptions,
onShowOption: {
path: ''
} as OnShowOptions
}
return res
// #endif
// #ifndef APP-ANDROID
const onShowOption = uni.getEnterOptionsSync();
const app = getApp()
const appOnShow = app.globalData.onShowOption as OnShowOptions
return {
appOnShow,
onShowOption
}
// #endif
},
getEnterOptionsSync() {
const enterOptions = uni.getEnterOptionsSync()
this.enterOptionsPath = enterOptions.path
if (enterOptions.path == this.homePagePath) {
this.checked = true
}
},
},
}
</script>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录