我在獲取數據時添加加載。在我的視圖列表中有分頁和頁面大小。所以我的問題是,每當我嘗試更改頁面大小並在加載後立即移動到其他頁面時,它都不會移動到頂部。我在加載後已經添加了this.document.body.scrollTop = 0;
,但它不起作用。Angular 2在加載後滾動到頂部
這些都是我在得到數據代碼: getProducts() { this.productService .getProducts(this.args) .subscribe( data => { this.data = data; this.loadingService.hide(); this.document.body.scrollTop = 0; }, (error) => console.log(error); }
); }
window.scrollTo(0,0)適用於ngOnInit()。 –
我也嘗試過使用它,但它不工作@ harold_mean2 –
嘗試'setTimeout((=){window.scrollTo(0,0);},0);' –