I am trying to navigate to a newly created product after i click submit button. Now so far everything works fine but in my .ts file i want to redirect to lets say edit component of that product after it been created. How can i get the id of newly created component? So far in my ts i have this which redirect to dashboard as soon as product is created, but i want to redirect it to edit that product
const newProduct = { ...product, price: +product.price };
this.adminService.createProduct(newProduct).subscribe((response: any) => {
this.router.navigate(['/dashboard/']);
this.toastr.success('Product Created Successfully');
});