在这种情况下,这与有关角形材料表的其他任何问题均无重复。所有其他这些都是指角度2-5,而不是角度6
我遇到了这个异常:
无法绑定到“数据源”,因为它不是“表”的已知属性。 (“
] [dataSource] =“ dataSource” class =“ mat-elevation-z8”>
如果我删除[dataSource],则例外是相同的,带有下一个特定指令。
HTML
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<ng-container matColumnDef="ID">
<th mat-header-cell *matHeaderCellDef> Id </th>
<td mat-cell *matCellDef="let element"> {{element.ID}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
app.module.ts
import {
MatTabsModule,
MatCardModule,
MatInputModule,
MatTableModule
} from "@angular/material";
@NgModule({
declarations: [AppComponent, ProjektuebersichtComponent],
imports: [
BrowserModule,
HazardRatingVerwaltungModule,
AppRoutingModule,
BrowserAnimationsModule,
ServicesModule,
MatTabsModule,
MatCardModule,
MatInputModule,
MatTableModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
package.json
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/cdk": "^6.4.5",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/material": "^6.4.5",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/router": "^6.1.0",
"core-js": "^2.5.4",
"rxjs": "^6.0.0",
"zone.js": "~0.8.26"
},
它应该基本工作。但事实并非如此。我已经更新了所有依赖项,并导入了所需的MatTableModule。该代码来自material.angular.io。我不知道那是怎么回事。
答案 0 :(得分:1)
您不需要使用标签table
。只需使用
<mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<ng-container matColumnDef="ID">
<th mat-header-cell *matHeaderCellDef> Id </th>
<td mat-cell *matCellDef="let element"> {{element.ID}} </td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</mat-table>
它应该可以工作