业务场景:使用angular框架,点击按钮跳转新的tab页面,并且带上上一个页面的值。
首先在当前组件的routing.module 里声明一下
xxxx-routing.module.ts文件:
const routes: Routes =
RouteExtensions.withHost(
{ path: '', component: XXXXXXXXXComponent },
[
{ path: '你的路径,写在数组里呀!', component: 你要引入的Component },
]);
在要发生跳转的页面里:
xxxxgoJump(){
this.router.navigate(['父组件的路径/你的路径, 你想穿入的值]);
}
这就完成啦!!