我在结构中有一系列角度组件,如下所示。
我的问题是来自路由器孙组件中按钮的链接,如何导航到根组件?
应用程序路由
const routes: Routes = [
{
path: '',
redirectTo: environment.devRedirect,
pathMatch: 'full',
canActivate: [AuthenticationGuard]
},
{
path: 'customers/:customerId/contracts/:contractId',
canActivate: [AuthenticationGuard],
children: [
{
path: 'projects/:projectId/grouping',
loadChildren: './grouping/grouping-routing.module#GroupingRoutingModule',
data: { animation: 'grouping' },
canActivate: [ AuthenticationGuard ]
},
{
path: '',
loadChildren: './projects/projects-routing.module#ProjectOverviewRoutingModule',
data: {
animation: 'project-overview'
},
canActivate: [ AuthenticationGuard ],
},
]
}
];
子组件路线
const routes: Routes = [
{
path: '',
component: GroupingComponent,
canActivate: [ AuthenticationGuard ],
children: [
{
path: 'create',
component: CreateEditComponent,
data: { animation: 'create' },
canActivate: [ AuthenticationGuard ]
},
{
path: ':groupId/edit',
component: CreateEditComponent,
data: { animation: 'edit' },
canActivate: [ AuthenticationGuard ]
},
{
path: '',
component: OverviewComponent,
data: { animation: 'overview' },
canActivate: [ AuthenticationGuard ]
}
]
}
];
您需要做的是首先使用ActivatedRoute:
constructor(private route : ActivatedRoute,
private router: Router){}
routeSubscription : Subscription ;
customerId : number ;
ngOnInit(){
this.getRouteParams();
}
getRouteParams(){
this.routeSubscription = this.route.params
.subscribe(
(route)=>{
console.log(route);
this.customerId = route.customerId ;
});
}
}
然后路由中的路由订阅会给你路由中的任何路由参数(例如console.log(route.customerid)检查)。
navigate(){
this.router.navigate(['customers' + this.customerId]);
}
并在您的html代码中使用:
<a (click)="navigate()"></a>
您可以从激活的路由中获取 customerId 和 contractId 参数,您可以按如下方式注入到组件:
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, Params } from '@angular/router';
@Component({
selector: 'my-component',
template: `
<a [routerLink]="['/customers', customerId, 'contracts', contractId]">back to root</a>
`
})
export class MyComponent implements OnInit {
costumerId: string;
contractId: string;
constructor(private route: ActivatedRoute) { }
ngOnInit() {
const params = this.route.snapshot.params;
this.costumerId = params['costumerId'];
this.contractId = params['contractId'];
}
}
您可以使用常规路由器简单地从孙子导航到根,如下所示:
<!-- grandchild.component.html --!>
<a [routerLink]="['/']">back to root</a>
我是Angular的新手,目前正在研究路由。我在组件中使用子路由时遇到了问题。routerLink在组件中没有呈现为链接。如果我使用路由器出口,应用程序会崩溃。 使用路由器出口时,我得到了以下错误信息: 我用谷歌搜索了错误消息,解决方案始终是模块中缺少路由器模块的导入。我已经导入了路由器模块。 这是我的模块。ts 这是我的应用程序。 怎么了,漏了什么? 如果您愿意,您也可以在github上查看我的
我对角度路由有问题。我有主应用程序路由模块和子模块,具有自己的路由模块和路由器出口,但此子模块中定义的路由使用根路由器出口而不是子路由器出口显示。 我的文件夹结构: app-routing.module.ts app.component.html 家庭教学模块.ts 首页.组件.html 这就是我使用空路径时得到的 - 它可以正确打开主组件。 但是当我输入/register时,我从login.co
谁能帮我创建一个触发器,将Sensordata表中的最后一条记录附加到lastssensordata中。我只希望每个ConnectionDeviceId有1个值,并且该值必须是最后插入的值。(它将用于在仪表中显示)。我将在下链接我的sql脚本。
也许有人能帮我澄清一下。 我正在尝试编写一个插入前触发器,如果它留空,可以设置关闭。这可能吗? 没有太多代码可显示。我所做的只是创建了一个带有调试语句的简单的插入前触发器,以确保我的触发器在验证规则之前执行。似乎验证规则是第一位的(我显然无法更改它)。触发器永远不会触发。 这是可行的还是不可能的?
我试图了解Socketchannes和NIO的总体情况。我知道如何使用常规套接字,以及如何为每个客户机服务器创建一个简单的线程(使用常规阻塞套接字)。 所以我的问题是: 什么是袜子通道 当我使用SocketChannel而不是Socket时,额外得到了什么 通道和缓冲区之间的关系是什么 什么是选择器 文档中的第一句话是
参见示例:https://angular-4zfq9r.stackblitz.io/home 代码在:https://stackblitz.com/edit/angular-4zfq9r 我有带路由器出口的根组件AppComponent。 我有一个家庭模块 < li>HomeComponent < li >消息组件 HomeComponent有一个命名的路由器出口“消息” 路由配置:应用模块:{路