Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道材料表中当前显示的数据何时更改,并且我需要订阅该更改。如果分页器存在,我只需要获取当前页面数据。
我们如何做到这一点?
您可以订阅 datasource.connect() 以获取当前显示的数据更改。它只提供当前渲染的数据。
this.dataSource.connect().subscribe(d => console.log(d));