这是我的函数和服务返回json List,我可以很好地列出我的HTML中的数据,但问题是如何在类型脚本中访问这个返回的数据输出端函数
reloadFilms(params) {
this.spinnerService.show();
this._productListService.getProductList().subscribe((productListData) => {
this.filmResource.query(params)
.then(films => this.films = productListData);
this.spinnerService.hide();
this.dtTrigger.next();
});
}
我需要在这里访问this.films
filmResource = new DataTableResource(this.films);