Angular> 상품 상세 페이지
2022. 2. 4.
순서 1. 상품 페이지 컴포넌트 생성 2. 상품 페이지를 위한 Angular route 생성 3. HTML페이지에 router link 추가 4. Product Service에서 product를 가저올 수 있는 ProductDetailsComponent 5. Spring Boot app에 요청할 URL을 부르는 Product Service 6. 상품 정보를 보여줄 ProductDetailsComponent를 위한 HTML 수정 상품 정보를 볼 수 있게 Spring Boot 를 설정 수정이나 메서드를 만들어야 할 것 같지만 REST API 기본 기능으로 안해도 됨. 1. component 생성 2. app.module.ts route 생성. ProductDetailsComponent로 등록. 3. rout..