카테고리 없음

240611 TIL 서른아홉번째날 -

8나지 2024. 6. 11. 11:17

 

컨트롤러를 사용할 수 있도록 외부로 전달 : export class ResumesController 

; 이때 class 이름인 ResumesController 은 대문자로 시작

 

router 파일에서 import로 ResumesController 받아올 예정이므로 대문자로 받기(여기서는 컨트롤러 export이름과 동일하게)

 

가져온 ResumesController를 이용해 새로운 ResumesController 만들건데 그걸 변수인

const resumesController 으로 담기 (이때는 소문자)

 

그 이후로 router에서 사용시 resumesController로 사용하면 됨