我在应用程序中使用角度2
我有一个分页,当我进入第3页并再次刷新它回到我不想要的第一页时,因为我想在网址中设置参数 所以onload我得到参数并设置当前页面
这是我的代码
fnSetPagination(iCurrrentPage) {
this.router.navigateByUrl(url+"?page="+icurrentPage);
this.iCurrrentPage = iCurrrentPage;
this.paginationData = {
start: Math.ceil((this.iCurrrentPage * this.itemsPerPage - (this.itemsPerPage)) + 1),
limit: this.itemsPerPage
}
this.fnGetdata();
}
点击下一页fnSetPagination触发那里我应该设置param,使用this.router.navigateByUrl我可以在我的url中看到param但是我的ngoninit再次触发,这是不建议的。实现的另一种方法是什么? / p>