私のマットテーブルは正常に機能していますが、公式のAPIドキュメントに従ってマットソートを追加すると、ngAfterViewInitで次のメッセージが表示されて失敗します
ViewFeedbackComponent.ngAfterViewInitで未定義のプロパティ「並べ替え」を設定できません
この問題についてはすでにSOの投稿があります(次のリンクを参照) Mat-table Sorting Demo not Working ですが、まだ動作させることができません。
誰かが問題を見つけましたか?公式の例は、コンポーネント自体で定義された「静的な」MatTableDataSourceで機能しますが、バックエンドからクエリを実行しています。
どんな助けも大歓迎です!
MatSortModuleは既にapp.module.tsにインポートされ、mat-sort-headerディレクティブが列に適用され、ngAfterViewInitはすでに公式の例とまったく同じです...
import { Component, OnInit, ViewEncapsulation, ViewChild, AfterViewInit} from '@angular/core';
import { Feedback} from '../../../../../models/feedback';
import { FeedbackService} from '../../services/feedback.service';
import { MatTableDataSource, MatSort} from '@angular/material';
@Component({
selector: 'app-view-feedback',
templateUrl: './view-feedback.component.html',
styleUrls: ['./view-feedback.component.css'],
encapsulation: ViewEncapsulation.Emulated
})
export class ViewFeedbackComponent implements OnInit, AfterViewInit {
feedbacks: Feedback[] = [];
showSpinner: boolean = true;
displayedColumns: String[] = [
'id',
'user',
'timestamp',
'stars'
];
dataSource: MatTableDataSource < Feedback > ;
@ViewChild(MatSort) sort: MatSort;
constructor(private _feedbackService: FeedbackService) {}
ngOnInit() {
this._feedbackService.getFeedback.subscribe(
res => {
this.feedbacks = res;
this.dataSource = new MatTableDataSource(this.feedbacks);
}
);
}
ngAfterViewInit() {
this.dataSource.sort = this.sort;
}
}
<div class="mat-tbl-container mat-elevation-z8">
<mat-table #tbl [dataSource]="dataSource" matSort>
<!-- column definitions -->
<ng-container matColumnDef="id">
<mat-header-cell *matHeaderCellDef mat-sort-header>Id</mat-header-cell>
<mat-cell *matCellDef="let r"> {{r._id}} </mat-cell>
</ng-container>
<ng-container matColumnDef="user">
<mat-header-cell *matHeaderCellDef mat-sort-header>User Id</mat-header-cell>
<mat-cell *matCellDef="let r"> {{r.user}} </mat-cell>
</ng-container>
<ng-container matColumnDef="timestamp">
<mat-header-cell *matHeaderCellDef mat-sort-header>Date</mat-header-cell>
<mat-cell *matCellDef="let r"> {{r.timestamp}} </mat-cell>
</ng-container>
<ng-container matColumnDef="stars">
<mat-header-cell *matHeaderCellDef mat-sort-header>Stars</mat-header-cell>
<mat-cell *matCellDef="let r"> {{r.stars}} </mat-cell>
</ng-container>
<!-- tbl display settings -->
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
問題は、次のコード
ngAfterViewInit() {
this.dataSource.sort = this.sort;
}
ここで実際にサブスクリプションでテーブルを取得する前に発生します:
ngOnInit() {
this._feedbackService.getFeedback.subscribe(
res => {
this.feedbacks = res;
this.dataSource = new MatTableDataSource(this.feedbacks);
}
);
}
可能な解決策として、ngAfterViewInit
呼び出しとgetFeedback
サブスクリプションをObservable.Zip
経由で同期できます。 RxJS Zip documentation を参照してください
この単純な解決策は、ngAfterViewInitでソートを宣言する代わりに、「this._feedbackService.getFeedback.subscribe」から結果を取得した後に宣言することです。
解決策は次のとおりです。
ngOnInit() {
this._feedbackService.getFeedback.subscribe(
res => {
this.feedbacks = res;
this.dataSource = new MatTableDataSource(this.feedbacks);
this.dataSource.sort = this.sort; //this will solve your problem
}
);
}
上記のものは私にとって完璧に機能します。
おかげで、
angular 7では、2つのPaginatorに対して次の例を使用しますが、paginatorをsortに置き換えます。
https://stackblitz.com/edit/data-table-multiple-data-source
この質問の複製は次のとおりです。
MatTableDataSourceから継承した接続メソッドの悪いアイデアを再定義しました...
古いバージョンの角材の前のソート方法の例を使用しています。最新の角度材料ソートの例では、ngAfterViewInit()
を使用してsort this.dataSource.sort = this.sort;
新しい例を使用してソートを機能させることができませんでした。古いソート方法では、DataSourceを拡張します。新しいパス「import {DataSource} from '@ angular/cdk/table」を使用してDataSourceをインポートできました。
import { Component, ViewChild, Inject, OnInit, ElementRef } from '@angular/core';
import { MatTableDataSource, MatSort } from '@angular/material';
import { DataSource } from '@angular/cdk/table';
import { Observable } from 'rxjs/Observable';
import { HttpClient, HttpResponse, HttpHeaders, HttpRequest} from '@angular/common/http';
import 'rxjs/add/operator/startWith';
import 'rxjs/add/observable/merge';
import 'rxjs/add/observable/of';
import 'rxjs/add/operator/map';
export interface Data {}
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
myData: Array < any > ;
displayedColumns = ['id', 'name'];
dataSource: MyDataSource;
@ViewChild(MatSort) sort: MatSort;
constructor(private http: HttpClient) {}
getData() {
let url = 'https://api.mydatafeeds.com/v1.1/cumulative_player_data.json?';
let headers = new HttpHeaders({ "Authorization": "123ykiki456789123456" });
this.http.get(url, {headers})
.subscribe(res => {
this.myData = res;
this.dataSource = new MyDataSource(this.myData, this.sort);
});
}
ngOnInit() {
this.getData();
}
}
export class MyDataSource extends DataSource < any > {
constructor(private dataBase: Data[], private sort: MatSort) {
super();
}
/** Connect function called by the table to retrieve one stream containing the data to render. */
connect(): Observable < Data[] > {
const displayDataChanges = [
Observable.of(this.dataBase),
this.sort.sortChange,
];
return Observable.merge(...displayDataChanges).map(() => {
return this.getSortedData();
});
}
disconnect() {}
/** Returns a sorted copy of the database data. */
getSortedData(): Data[] {
const data = this.dataBase.slice();
if (!this.sort.active || this.sort.direction == '') { return data; }
return data.sort((a, b) => {
let propertyA: number | string = '';
let propertyB: number | string = '';
switch (this.sort.active) {
case 'id':
[propertyA, propertyB] = [a.id, b.id];
break;
case 'name':
[propertyA, propertyB] = [a.name, b.name];
break;
}
let valueA = isNaN(+propertyA) ? propertyA : +propertyA;
let valueB = isNaN(+propertyB) ? propertyB : +propertyB;
return (valueA < valueB ? -1 : 1) * (this.sort.direction == 'asc' ? 1 : -1);
});
}
}
<mat-table #table [dataSource]="dataSource" matSort>
<ng-container matColumnDef="id">
<mat-header-cell *matHeaderCellDef mat-sort-header> Id </mat-header-cell>
<mat-cell *matCellDef="let data"> <b>{{data.id}}.</b>
</mat-cell>
</ng-container>
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef mat-sort-header> Id </mat-header-cell>
<mat-cell *matCellDef="let data"> <b>{{data.name}}.</b>
</mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let data; columns: displayedColumns;"></mat-row>
</mat-table>