📌  相关文章
📜  使用 Angular 的页面重新加载按钮 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:44.409000             🧑  作者: Mango

代码示例1
at template use event buinding:
    (click)="reloadCurrentPage()"
inside the .ts file, add the function,
reloadCurrentPage() {
    window.location.reload();
   }