我想将数据从一个组件传递到angular7中的另一个组件

时间:2019-04-04 10:27:18

标签: angular7 angular-components angular-component-router angular-new-router

我正在使用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>

0 个答案:

没有答案