-2
app-routing.module.ts
{ path: 'projectmodel/:projectmodelname/salespack', component: componentname}

So here I want to be the url like this while navigating(on click on button i want to navigate to this page) I tried like this

  this.router.navigate(['/projectmodel', this.salesPackName, '/salespack'])
this.salesPackName = this.route.snapshot.paramMap.get('projectmodelname');

but it is giving page not found i.e i have given the wrong url. Where am i missing? I am new to angular. Any help it would be helful..

1 Answers1

0

You should not need the slashes.

Have you tied:

  this.router.navigate(['projectmodel', this.salesPackName, 'salespack'])
DrakeAnglin
  • 718
  • 1
  • 4
  • 12