일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- chainlink 설명
- nestjs 튜토리얼
- git rebase
- 체인의정석
- ethers type
- Vue
- multicall
- 컨트렉트 동일한 함수이름 호출
- ethers typescript
- nest.js설명
- rust 기초
- 러스트기초
- ethers v6
- SBT표준
- 머신러닝기초
- 스마트컨트렉트 예약어 함수이름 중복
- 러스트 기초
- 컨트렉트 배포 자동화
- 스마트컨트렉트테스트
- 깃허브명령어
- 스마트컨트렉트프록시
- ethers
- 스마트컨트렉트 함수이름 중복 호출
- ambiguous function description
- 스마트 컨트렉트 함수이름 중복
- Vue.js
- 러스트 기초 학습
- 프록시배포구조
- ethers websocket
- vue기초
Archives
- Today
- Total
체인의정석
Nest.js) 정의한 entities 적용하기 service 부분 코드 수정 본문
728x90
반응형
정의한 entities를 바탕으로 services에서 다음과 같이 적용을 했다.
import { Injectable } from '@nestjs/common';
import { InjectRepository} from '@nestjs/typeorm';
import { Repository } from 'typeorm';
import { Addresses } from '../entities/addresses.entity'
@Injectable()
export class AddressesService {
constructor(
@InjectRepository(Addresses)
private addressesRepository: Repository<Addresses>,
) {}
findOne(address: string) {
return this.addressesRepository.findOne(address);
}
}
https://docs.nestjs.com/recipes/sql-typeorm
위 링크에 있는 예제를 보고 적용을 하였다.
해당 서비스가 작동되는 순서는 다음과 같다.
1. app.module에서 신호를 받아옴.
2. controller 에서 라우팅 진행
3. service에서 entities에 정의된 테이블을 가지고 와서 서치 후 리턴
이렇게 service, controller, entities 간의 관계가 돌아가는 것을 한번 경험하였다. 이제 좀 감이 잡히는것 같다.
728x90
반응형
'개발 > backend' 카테고리의 다른 글
Nest.js) 환경변수 설정하기 (0) | 2021.10.19 |
---|---|
ERROR [ExceptionHandler] Nest can't resolve dependencies of the 해결 (0) | 2021.10.19 |
Nest.js) type ORM , entities 정의하기 (0) | 2021.10.18 |
Nest.js) Database 연동하기 (0) | 2021.10.15 |
Nest.js ) Modules (0) | 2021.10.15 |
Comments