constructor(
private router:Router,
private route:ActivatedRoute,
private categoryService: CategoryService,
private productService: ProductService) {
this.categories$ = categoryService.getCategories();
let id = this.route.snapshot.paramMap.get('id');
if (id) this.productService.get(id).valueChanges().pipe(take(1)).subscribe(p => this.product = p);
console.log(id);
}
Я не могу получить идентификатор из базы! Идентификатор возврата не определен!