一、页面导航
1. 导航到非 `tabBar` 页面
- 非 `tabBar` 页面指的是没有被当作 `tabBar` 进行切换的页面
- 案例代码:
```javascript
<navigator url="/pages/about/about">跳转到 about 页面</navigator>
```
- 注意事项
- `url` 属性设置需要跳转的路径
- 页面路径应该以 / 开头,
- 路径必须提前在 `app.json` 的 `pages` 节点下声明
###### 002 - 导航到 `tabBar` 页面
> navigator组件单纯使用 `url` 属性,无法导航到 `tabBar` 页面,必须需要结合 `open-type` 属性进行导航。
- 案例代码
```javascript
<navigator url="/pages/person/person" open-type="switchTab">跳转到 tabBar 页面</navigator>
```
###### 003 - 后退导航
> 小程序如果要后退到上一页面或多级页面,需要把 `open-type` 设置为 `navigateBack`ÿ