Answers for "angular how to refresh form"

0

page reload button using angular

at template use event buinding:
	(click)="reloadCurrentPage()"
inside the .ts file, add the function,
reloadCurrentPage() {
    window.location.reload();
   }
Posted by: Guest on May-06-2021
1

refresh page angular

refresh(): void {
    window.location.reload();
}
Posted by: Guest on March-16-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language