18

I'm sending a string as a link to my router, eg "/blog/pages/3"

However I'm getting the error "commands.reduce is not a function"

The navigate does work though, just the error shows up in the console

goToPage(link) {
  this.router.navigate(link);
}
Robbie Mills
  • 2,705
  • 7
  • 52
  • 87

1 Answers1

47

The function should be written like this. Use square brackets in the parameter:

goToPage(link) {
  this.router.navigate([link]);
}
pzaenger
  • 11,381
  • 3
  • 45
  • 46
ayush didwaniya
  • 484
  • 6
  • 4