当我单击按钮的按钮时,在服务器的成功回调中,我通过重新实例化数据源并像这样传递新结果集来更新列表以反映新结果集。
component.ts
ngOnInit(): void {
this.getPortfolioData();
}
getPortfolioData() {
// alert('hiii');
this.dataSource = new FilesDataSource(this._predictionListService, this.paginator, this.sort);
fromEvent(this.filter.nativeElement, 'keyup')
.pipe(
takeUntil(this._unsubscribeAll),
debounceTime(150),
distinctUntilChanged()
)
.subscribe(() => {
if (!this.dataSource) {
return;
}
this.dataSource.filter = this.filter.nativeElement.value;
});
this.changeDetectorRefs.detectChanges();
}
addToPortfolioSubmit(stockId: string) {
if (stockId) {
const stockid = {
'stockId': stockId.toString()
}
this._predictionListService.addToPortfolio(stockid).subscribe((result) => {
this.getPortfolioData()
// window.location.reload();
}, (err) => {
console.log(err);
});
}
}
当我单击此addToPortfolioSubmit按钮时。响应后数据源未更新
export class FilesDataSource extends DataSource<any>
{
// Private
private _filterChange = new BehaviorSubject('');
private _filteredDataChange = new BehaviorSubject('');
/**
* Constructor
*
* @param {PredictionListService} _predictionListService
* @param {MatPaginator} _matPaginator
* @param {MatSort} _matSort
*/
constructor(
private _predictionListService: PredictionListService,
private _matPaginator: MatPaginator,
private _matSort: MatSort,
) {
super();
this.filteredData = this._predictionListService.predictions;
}
// -----------------------------------------------------------------------------------------------------
// @ Accessors
// -----------------------------------------------------------------------------------------------------
// Filtered data
get filteredData(): any {
return this._filteredDataChange.value;
}
set filteredData(value: any) {
this._filteredDataChange.next(value);
}
// Filter
get filter(): string {
return this._filterChange.value;
}
set filter(filter: string) {
this._filterChange.next(filter);
}
// -----------------------------------------------------------------------------------------------------
// @ Public methods
// -----------------------------------------------------------------------------------------------------
/**
* Connect function called by the table to retrieve one stream containing the data to render.
*
* @returns {Observable<any[]>}
*/
connect(): Observable<any[]> {
const displayDataChanges = [
this._predictionListService.onPredictionsChanged,
this._matPaginator.page,
this._filterChange,
this._matSort.sortChange
];
return merge(...displayDataChanges).pipe(map(() => {
let data = this._predictionListService.predictions.slice();
data = this.filterData(data);
this.filteredData = [...data];
data = this.sortData(data);
// Grab the page's slice of data.
const startIndex = this._matPaginator.pageIndex * this._matPaginator.pageSize;
return data.splice(startIndex, this._matPaginator.pageSize);
})
);
}
/**
* Sort data
*
* @param data
* @returns {any[]}
*/
sortData(data): any[] {
if (!this._matSort.active || this._matSort.direction === '') {
return data;
}
return data.sort((a, b) => {
let propertyA: number | string = '';
let propertyB: number | string = '';
switch (this._matSort.active) {
case 'ticker':
[propertyA, propertyB] = [a.ticker, b.ticker];
break;
}
const valueA = isNaN(+propertyA) ? propertyA : +propertyA;
const valueB = isNaN(+propertyB) ? propertyB : +propertyB;
return (valueA < valueB ? -1 : 1) * (this._matSort.direction === 'asc' ? 1 : -1);
});
}
/**
* Disconnect
*/
disconnect(): void {
}
}
以下是用于获取数据列表的Service片段:
service.ts
import { ActivatedRouteSnapshot, Resolve, RouterStateSnapshot } from '@angular/router';
import { BehaviorSubject, Observable, from } from 'rxjs';
@Injectable()
export class Service implements Resolve<any>
{
predictions: any[];
id: string;
onPredictionsChanged: BehaviorSubject<any>;
httpOptions
/**
* Constructor
*
* @param {HttpClient} _httpClient
*/
constructor(
private _httpClient: HttpClient,
) {
this.httpOptions = {
headers: new HttpHeaders({
'Content-Type': 'application/json',
})
};
// Set the defaults
this.onPredictionsChanged = new BehaviorSubject({});
}
/**
* Resolver
*
* @param {ActivatedRouteSnapshot} route
* @param {RouterStateSnapshot} state
* @returns {Observable<any> | Promise<any> | any}
*/
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<any> | Promise<any> | any {
return new Promise((resolve, reject) => {
Promise.all([
this.getPredictions(route.params.id)
]).then(
() => {
resolve();
},
reject
);
});
}
/**
* Get Predictions
*
* @returns {Promise<any>}
*/
getPredictions(id): Promise<any> {
return new Promise((resolve, reject) => {
this._httpClient.post(getGroupsDetails, { 'group_id': id }, this.httpOptions)
.subscribe((response: any) => {
this.predictions = response.data;
this.onPredictionsChanged.next(this.predictions);
resolve(response);
}, reject);
});
}
}
后端API可以正常工作,但数据源未更新
任何帮助/建议将不胜感激。
谢谢。