“Cómo hacer clic en el botón y redirigir angular” Código de respuesta

Cómo hacer clic en el botón y redirigir angular

<a class="btn" routerLink="/votes">Check votes</a>
Bloody Beetle

Cómo hacer clic en el botón y redirigir angular

import { Component } from '@angular/core';
import { Router } from '@angular/router';
// component details here...
export class MyComponent  {
  constructor(private router: Router){ }

  goToVotes($myParam: string = ''): void {
    const navigationDetails: string[] = ['/votes'];
    if($myParam.length) {
      navigationDetails.push($myParam);
    }
    this.router.navigate(navigationDetails);
  }
}
Bloody Beetle

Cómo hacer clic en el botón y redirigir angular

<button class="btn" (click)="goToVotes()">Check votes</button>
Bloody Beetle

Respuestas similares a “Cómo hacer clic en el botón y redirigir angular”

Preguntas similares a “Cómo hacer clic en el botón y redirigir angular”

Más respuestas relacionadas con “Cómo hacer clic en el botón y redirigir angular” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código