“rafraîchir angulaire” Réponses codées

Page de rafraîchissement angulaire sans recharger

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

Page de rafraîchissement angulaire

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

actualiser le composant courant angulaire

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

Comment recharger un composant en angulaire

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

composant de reloade angulaire

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

rafraîchir angulaire

@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

Réponses similaires à “rafraîchir angulaire”

Questions similaires à “rafraîchir angulaire”

Plus de réponses similaires à “rafraîchir angulaire” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code