service

언어/Nest.js

Service & Entity

Service 기능 클래스, 변수, 함수 기능 구현 생성 $ nest g s [이름] 구조 기본 구조 spec파일은 test파일이므로 지워도 무방 app.module.ts에 자동 생성 movie.setvice.ts import { Injectable, NotFoundException } from '@nestjs/common'; import { Movie } from './entities/movie.entity'; @Injectable() export class MoviesService { private movies: Movie[] = []; getAll(): Movie[] { return this.movies; } getOne(id: string): Movie { const movie = this.mov..

MellowHoney
'service' 태그의 글 목록