我正在使用angular7创建一个用于调查目的的Web项目。我有一个动态表。当我单击该行值以导航到具有其详细信息的另一页时,我想传递该行值。 这是我的代码 routing.module.ts
const routes: Routes = [
{ path: '',
redirectTo: '/login',
pathMatch: 'full'
},
{ path: 'home', component: HomeComponent },
{ path: 'dash/:state', component: DashboardComponent },
home.component.html
<th mat-header-cell *matHeaderCellDef mat-sort-header>State</th>
<td mat-cell *matCellDef="let row"><a [routerLink]="['/dash', {statename:state}]"
routerLinkActive="router-link-active">{{row.state}}</a></td>
</ng-container>