Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
24d34dbd
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
24d34dbd
编写于
6月 26, 2023
作者:
O
openharmony_ci
提交者:
Gitee
6月 26, 2023
浏览文件
操作
浏览文件
下载
差异文件
!20101 add namedrouter api
Merge pull request !20101 from Hu_zq/master
上级
c55320be
ac78a48e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
376 addition
and
0 deletion
+376
-0
zh-cn/application-dev/reference/apis/js-apis-arkui-UIContext.md
...application-dev/reference/apis/js-apis-arkui-UIContext.md
+376
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-arkui-UIContext.md
浏览文件 @
24d34dbd
...
...
@@ -875,6 +875,382 @@ router.replaceUrl({
});
```
### pushNamedRoute
pushNamedRoute(options: NamedRouterOptions): Promise
<
void
>
跳转到指定的命名路由页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | --------- |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 跳转页面描述信息。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | --------- |
| Promise
<
void
>
| 异常返回结果。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if UI execution context not found. |
| 100003 | if the pages are pushed too much. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
pushNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
,
data2
:
{
data3
:
[
123
,
456
,
789
]
}
}
})
.
then
(()
=>
{
// success
})
.
catch
(
err
=>
{
console
.
error
(
`pushNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
})
```
### pushNamedRoute
pushNamedRoute(options: NamedRouterOptions, callback: AsyncCallback
<
void
>
): void
跳转到指定的命名路由页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | --------- |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 跳转页面描述信息。 |
| callback | AsyncCallback
<
void
>
| 是 | 异常响应回调。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if UI execution context not found. |
| 100003 | if the pages are pushed too much. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
pushNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
,
data2
:
{
data3
:
[
123
,
456
,
789
]
}
}
},
(
err
)
=>
{
if
(
err
)
{
console
.
error
(
`pushNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
return
;
}
console
.
info
(
'
pushNamedRoute success
'
);
})
```
### pushNamedRoute
pushNamedRoute(options: NamedRouterOptions, mode: RouterMode): Promise
<
void
>
跳转到指定的命名路由页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ---------- |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 跳转页面描述信息。 |
| mode |
[
RouterMode
](
js-apis-router.md#routermode9
)
| 是 | 跳转页面使用的模式。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | --------- |
| Promise
<
void
>
| 异常返回结果。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if UI execution context not found. |
| 100003 | if the pages are pushed too much. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
pushNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
,
data2
:
{
data3
:
[
123
,
456
,
789
]
}
}
},
router
.
RouterMode
.
Standard
)
.
then
(()
=>
{
// success
})
.
catch
(
err
=>
{
console
.
error
(
`pushNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
})
```
### pushNamedRoute
pushNamedRoute(options: NamedRouterOptions, mode: RouterMode, callback: AsyncCallback
<
void
>
): void
跳转到指定的命名路由页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ---------- |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 跳转页面描述信息。 |
| mode |
[
RouterMode
](
js-apis-router.md#routermode9
)
| 是 | 跳转页面使用的模式。 |
| callback | AsyncCallback
<
void
>
| 是 | 异常响应回调。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if UI execution context not found. |
| 100003 | if the pages are pushed too much. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
pushNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
,
data2
:
{
data3
:
[
123
,
456
,
789
]
}
}
},
router
.
RouterMode
.
Standard
,
(
err
)
=>
{
if
(
err
)
{
console
.
error
(
`pushNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
return
;
}
console
.
info
(
'
pushNamedRoute success
'
);
})
```
### replaceNamedRoute
replaceNamedRoute(options: NamedRouterOptions): Promise
<
void
>
用指定的命名路由页面替换当前页面,并销毁被替换的页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ------------------ |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 替换页面描述信息。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | --------- |
| Promise
<
void
>
| 异常返回结果。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if UI execution context not found. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
replaceNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
}
})
.
then
(()
=>
{
// success
})
.
catch
(
err
=>
{
console
.
error
(
`replaceNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
})
```
### replaceNamedRoute
replaceNamedRoute(options: NamedRouterOptions, callback: AsyncCallback
<
void
>
): void
用指定的命名路由页面替换当前页面,并销毁被替换的页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ------------------ |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 替换页面描述信息。 |
| callback | AsyncCallback
<
void
>
| 是 | 异常响应回调。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if UI execution context not found. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
replaceNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
}
},
(
err
)
=>
{
if
(
err
)
{
console
.
error
(
`replaceNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
return
;
}
console
.
info
(
'
replaceNamedRoute success
'
);
})
```
### replaceNamedRoute
replaceNamedRoute(options: NamedRouterOptions, mode: RouterMode): Promise
<
void
>
用指定的命名路由页面替换当前页面,并销毁被替换的页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ---------- |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 替换页面描述信息。 |
| mode |
[
RouterMode
](
js-apis-router.md#routermode9
)
| 是 | 跳转页面使用的模式。 |
**返回值:**
| 类型 | 说明 |
| ------------------- | --------- |
| Promise
<
void
>
| 异常返回结果。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if can not get the delegate. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
replaceNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
}
},
router
.
RouterMode
.
Standard
)
.
then
(()
=>
{
// success
})
.
catch
(
err
=>
{
console
.
error
(
`replaceNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
})
```
### replaceNamedRoute
replaceNamedRoute(options: NamedRouterOptions, mode: RouterMode, callback: AsyncCallback
<
void
>
): void
用指定的命名路由页面替换当前页面,并销毁被替换的页面。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------------------------------- | ---- | ---------- |
| options |
[
NamedRouterOptions
](
js-apis-router.md#namedrouteroptions10
)
| 是 | 替换页面描述信息。 |
| mode |
[
RouterMode
](
js-apis-router.md#routermode9
)
| 是 | 跳转页面使用的模式。 |
| callback | AsyncCallback
<
void
>
| 是 | 异常响应回调。 |
**错误码:**
以下错误码的详细介绍请参见
[
ohos.router(页面路由)
](
../errorcodes/errorcode-router.md
)
错误码。
| 错误码ID | 错误信息 |
| --------- | ------- |
| 100001 | if UI execution context not found. |
| 100004 | if the named route is not exist. |
**示例:**
```
ts
let
router
=
uiContext
.
getRouter
();
router
.
replaceNamedRoute
({
name
:
'
myPage
'
,
params
:
{
data1
:
'
message
'
}
},
router
.
RouterMode
.
Standard
,
(
err
)
=>
{
if
(
err
)
{
console
.
error
(
`replaceNamedRoute failed, code is
${
err
.
code
}
, message is
${
err
.
message
}
`
);
return
;
}
console
.
info
(
'
replaceNamedRoute success
'
);
});
```
### back
back(options?: RouterOptions ): void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录