* 서비스
async getAllBoards(){
return this.boardRepository.find(); //매개변수없음 -> 모든것 가져옴
}
* 컨트롤러
@Get()
getAllBoard(){
return this.boardsService.getAllBoards();
}
'JS > Nest.js' 카테고리의 다른 글
[Nest JS] 회원가입 구현 / TypeError: this.userRepository.createUser is not a function 해결 (0) | 2024.08.18 |
---|---|
[Nest JS] 인증 구현 준비 (컨트롤러, 서비스, 리포지토리 생성) (0) | 2024.08.18 |
[Nest JS] 게시글 업데이트 (0) | 2024.08.18 |
[Nest JS] 게시글 삭제 (0) | 2024.08.18 |
[Nest JS] 게시글생성 db / typeOrm 3.0 issued 해결 / @EntityRepository 해결 (0) | 2024.08.17 |