MorJS 路由参数 customRoutes
- 默认值:
{}
- 介绍:自定义路由
示例:
// app.json
"router": {
"customRoutes": {
"/pages/index/index": "/index"
}
}
根据配置,调用 my.navigateTo({ url: '/pages/index.index'})
后,
地址栏分别展示为:
https://{{domain}}/#/index
(hash
模式)https://{{domain}}/index
(browser
模式)