“refrescar angular” Código de respuesta

Página de actualización angular sin recargar

this.router.navigate(['path/to'])
  .then(() => {
    window.location.reload();
  });
DevPedrada

actualizar la página angular

refresh(): void {
    window.location.reload();
}
|_Genos_|

Actualizar el componente de corriente angular

  reloadCurrentRoute() {
    let currentUrl = this._router.url;
    this._router.navigateByUrl('/', {skipLocationChange: true}).then(() => {
        this._router.navigate([currentUrl]);
        console.log(currentUrl);
    });
  }
Foolish Fly

Cómo recargar un componente en angular

reloadComponent() {
  let currentUrl = this.router.url;
      this.router.routeReuseStrategy.shouldReuseRoute = () => false;
      this.router.onSameUrlNavigation = 'reload';
      this.router.navigate([currentUrl]);
  }
Courageous Chamois

componente de recarga angular

reloadCurrentRoute() {
    let currentUrl = this.router.url;
    this.router.navigateByUrl('/', {skipLocationChange: true}).then(() => {
        this.router.navigate([currentUrl]);
    });
}
Courageous Chamois

refrescar angular

@Component({
	selector: 'app-root',
	templateUrl: './app.component.html',
	styleUrls: ['./app.component.css']
})
export class AppComponent {
	title = 'refreshPage';
	constructor(public _router: Router, public _location: Location) { }
	refresh(): void {
		this._router.navigateByUrl("/refresh", { skipLocationChange: true }).then(() => {
		console.log(decodeURI(this._location.path()));
		this._router.navigate([decodeURI(this._location.path())]);
		});
	}
}
Wrong Wombat

Respuestas similares a “refrescar angular”

Preguntas similares a “refrescar angular”

Más respuestas relacionadas con “refrescar angular” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código