Home
last modified time | relevance | path

Searched refs:replacePath (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dohos-atomicservice-NavPushPathHelper.md321 ### replacePath subsection
323 replacePath(moduleName: string, info: NavPathInfo, animated?: boolean): Promise\<void\>
353 ### replacePath subsection
355 replacePath(moduleName: string, info: NavPathInfo, options?: NavigationOptions): Promise\<void\>
605 Button('replacePath', { stateEffect: true, type: ButtonType.Capsule })
610 …this.helper.replacePath('hsptest2', { name: 'pageTwo', param: new ParamWithOp(), onPop: (popInfo: …
613 …console.error(`[replacePath]failed, error code = ${error.code}, error.message = ${error.message}.`…
615 console.log('[replacePath]success.');
619 … Button('replacePath with NavigationOptions', { stateEffect: true, type: ButtonType.Capsule })
624 …this.helper.replacePath('hsptest2', { name: 'pageTwo', param: new ParamWithOp(), onPop: (popInfo: …
[all …]
H A Dohos-arkui-advanced-MultiNavigation.md111 ### replacePath subsection
113 replacePath(info: NavPathInfo, animated?: boolean): void
124 ### replacePath subsection
126 replacePath(info: NavPathInfo, options?: NavigationOptions): void
H A Dts-basic-components-navigation.md792 ### replacePath<sup>11+</sup>
794 replacePath(info: NavPathInfo, animated?: boolean): void
809 ### replacePath<sup>12+</sup>
811 replacePath(info: NavPathInfo, options?: NavigationOptions): void
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/navpushpathhelper/
H A Dnavpushpathhelper.js106 async replacePath(moduleName, info, optionParam) { method in NavPushPathHelper
109 this.navPathStack_?.replacePath(info, optionParam);
115 this.navPathStack_?.replacePath(info, optionParam);
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dohos-atomicservice-NavPushPathHelper.md321 ### replacePath subsection
323 replacePath(moduleName: string, info: NavPathInfo, animated?: boolean): Promise\<void\>
353 ### replacePath subsection
355 replacePath(moduleName: string, info: NavPathInfo, options?: NavigationOptions): Promise\<void\>
605 Button('replacePath', { stateEffect: true, type: ButtonType.Capsule })
610 …this.helper.replacePath('hsptest2', { name: 'pageTwo', param: new ParamWithOp(), onPop: (popInfo: …
613 …console.error(`[replacePath]failed, error code = ${error.code}, error.message = ${error.message}.`…
615 console.log('[replacePath]success.');
619 … Button('replacePath with NavigationOptions', { stateEffect: true, type: ButtonType.Capsule })
624 …this.helper.replacePath('hsptest2', { name: 'pageTwo', param: new ParamWithOp(), onPop: (popInfo: …
[all …]
H A Dohos-arkui-advanced-MultiNavigation.md111 ### replacePath subsection
113 replacePath(info: NavPathInfo, animated?: boolean): void
124 ### replacePath subsection
126 replacePath(info: NavPathInfo, options?: NavigationOptions): void
H A Dts-basic-components-navigation.md794 ### replacePath<sup>11+</sup>
796 replacePath(info: NavPathInfo, animated?: boolean): void
811 ### replacePath<sup>12+</sup>
813 replacePath(info: NavPathInfo, options?: NavigationOptions): void
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Darkts-navigation-introduction.md40 | 路由替换 | replacePath & replacePathByName | replaceUrl & …
H A Darkts-router-to-navigation.md224 this.pathStack.replacePath({ name: 'pageOne' })
H A Darkts-navigation-navigation.md368 this.pageStack.replacePath({ name: "PageOne", param: "PageOne Param" })
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/multinavigation/source/
H A Dmultinavigation.ets586 replacePath(info: NavPathInfo, animated?: boolean): void;
587 replacePath(info: NavPathInfo, options?: NavigationOptions): void;
588 replacePath(info: NavPathInfo, optionParam?: boolean | NavigationOptions): void {
603 hilog.error(0x0000, 'MultiNavigation', 'replacePath fail stack is empty');
608 hilog.warn(0x0000, 'MultiNavigation', 'replacePath fail, not support replace placeHolder');
612 this.subStackList[subStackSize - 1].replacePath(newPolicyInfo, animated);
618 this.replacePath({ name: name, param: param }, animated);
1455 replacePath(info: MultiNavPolicyInfo, animated?: boolean): void {
1481 return this.primaryStack.replacePath(info.navInfo, animated);
1487 return this.secondaryStack.replacePath(info.navInfo, animated);
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/multinavigation/interfaces/
H A Dmultinavigation.js734 replacePath(p6, q6) {
758 this.subStackList[t6 - 1].replacePath(v6, r6);
763 this.replacePath({ name: m6, param: n6 }, o6);
1537 replacePath(k, l) {
1560 return this.primaryStack.replacePath(g.navInfo, h);
1565 return this.secondaryStack.replacePath(e.navInfo, f);
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-navigation-introduction.md40 | Route replacement | replacePath & replacePathByName | r…
H A Darkts-router-to-navigation.md224 this.pathStack.replacePath({ name: 'pageOne' })
H A Darkts-navigation-navigation.md350 this.pageStack.replacePath({ name: "PageOne", param: "PageOne Param" })
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/source/
H A Datomicserviceweb.ets95 registerJsApi('navPathStack.replacePath', 'replacePath', '1.0.0', MAX_VERSION, ['name']);
785 replacePath(options: ReplacePathOptions): void {
786 if (!this.checkNavPathStack('navPathStack.replacePath', options)) {
789 this.navPathStack?.replacePath({
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/
H A Datomicserviceweb.js899 replacePath(s4) { method in AtomicServiceApi
903 this.navPathStack?.replacePath({
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsEnumStyle.js2354 replacePath(info, optionParam) { method in NavPathStack