Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bailicangdu committed Jul 31, 2022
1 parent 73458c5 commit 3c3decf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/1.x/sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
- [生命周期](zh-cn/life-cycles)
- [环境变量](zh-cn/env)
- [JS沙箱](zh-cn/sandbox)
- [路由系统](zh-cn/router)
- [虚拟路由系统](zh-cn/router)
- [样式隔离](zh-cn/scopecss)
- [元素隔离](zh-cn/dom-scope)
- [数据通信](zh-cn/data)
Expand Down
6 changes: 3 additions & 3 deletions docs/1.x/zh-cn/router.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MicroApp为子应用提供了一套虚拟路由系统,子应用将运行在这套虚拟路由系统中,以便和基座应用的路由进行隔离,避免相互影响。
MicroApp为子应用提供了一套虚拟路由系统,子应用运行在这套虚拟路由系统中,以便和基座应用的路由进行隔离,避免相互影响。

子应用的路由信息会作为query参数同步到浏览器地址上,如下:

Expand All @@ -13,7 +13,7 @@ MicroApp为子应用提供了一套虚拟路由系统,子应用将运行在这
2. 子应用控制基座跳转
3. 子应用控制其它子应用跳转

由于nextjs的路由系统非常特殊,当子应用是nextjs时无法直接控制跳转,其跳转方式参考[通过数据通信控制跳转](/zh-cn/jump?id=方式二、通过数据通信控制跳转)
由于nextjs的路由系统非常特殊,当子应用是nextjs时无法直接控制跳转,参考[通过数据通信控制跳转](/zh-cn/jump?id=方式二、通过数据通信控制跳转)

<!-- tabs:start -->
#### ** 基座 **
Expand Down Expand Up @@ -425,7 +425,7 @@ const defaultPage = router.getDefaultPage('my-app')


## 获取路由信息
**介绍:**获取子应用的路由信息
**介绍:**获取子应用的路由信息,返回值与子应用的location相同
```js
/**
* @param {string} name 必填,子应用的name
Expand Down

0 comments on commit 3c3decf

Please sign in to comment.