그리고 posts 경로에 posts.ctrl.js 파일을 만든 후 주석을 참고하면서 다음 코드를 입력해 보세요.

    posts/posts.ctrl.js

    let postId = 1; // id 초깃값입니다.
    
    // posts 배열 초기 데이터
    const posts = [
      {
        id: 1,
        title: '제목',
        body: '내용',
      },
    ];
    
    /* 포스트 작성
    POST /api/posts
    { title, body }
    */
    exports.write = ctx => {
      // REST API Request Body ctx.request.body에서 조회할  있습니다.
      const { title, body } = ctx.request.body;
      postId += 1; // 기존 postId 값에 1 더합니다.
      const post = { id: postId, title, body };
      posts.push(post);
      ctx.body = post;
    };
    
    /* 포스트 목록 조회
    GET /api/posts
    */
    exports.list = ctx => {
      ctx.body = posts;
    };
    
    /* 특정 포스트 조회
    GET /api/posts/:id
    */
    exports.read = ctx => {
      const { id } = ctx.params;
      // 주어진 id 값으로 포스트를 찾습니다.
      // 파라미터로 받아  값은 문자열 형식이므로 파라미터를 숫자로 변환하거나
      // 비교할 p.id 값을 문자열로 변경해야 합니다.
      const post = posts.find(p => p.id.toString() = = = id);
      // 포스트가 없으면 오류를 반환합니다.
      if (!post) {
        ctx.status = 404;
        ctx.body = {
          message: '포스트가 존재하지 않습니다.',
        };
        return;
      }
      ctx.body = post;
    };
    
    /* 특정 포스트 제거
    DELETE /api/posts/:id
    */
    exports.remove = ctx => {
      const { id } = ctx.params;
      // 해당 id 가진 post  번째인지 확인합니다.
      const index = posts.findIndex(p => p.id.toString() = = = id);
      // 포스트가 없으면 오류를 반환합니다.
      if (index = = = -1) {
        ctx.status = 404;
        ctx.body = {
          message: '포스트가 존재하지 않습니다.',
        };
        return;
      }
      // index번째 아이템을 제거합니다.
      posts.splice(index, 1);
      ctx.status = 204; // No Content
    };
    
    /* 포스트 수정(교체)
    PUT /api/posts/:id
    { title, body }
    */
    exports.replace = ctx => {
      // PUT 메서드는 전체 포스트 정보를 입력하여 데이터를 통째로 교체할  사용합니다.
      const { id } = ctx.params;
      // 해당 id 가진 post  번째인지 확인합니다.
      const index = posts.findIndex(p => p.id.toString() = = = id);
      // 포스트가 없으면 오류를 반환합니다.
      if (index = = = -1) {
        ctx.status = 404;
        ctx.body = {
          message: '포스트가 존재하지 않습니다.',
        };
        return;
      }
      // 전체 객체를 덮어 씌웁니다.
      // 따라서 id 제외한 기존 정보를 날리고, 객체를 새로 만듭니다.
      posts[index] = {
        id,
        ...ctx.request.body,
      };
      ctx.body = posts[index];
    };
    
    /* 포스트 수정(특정 필드 변경)
    PATCH /api/posts/:id
    { title, body }
    */
    exports.update = ctx => {
      // PATCH 메서드는 주어진 필드만 교체합니다.
      const { id } = ctx.params;
      // 해당 id 가진 post  번째인지 확인합니다.
      const index = posts.findIndex(p => p.id.toString() = = = id);
      // 포스트가 없으면 오류를 반환합니다.
      if (index = = = -1) {
        ctx.status = 404;
        ctx.body = {
          message: '포스트가 존재하지 않습니다.',
        };
        return;
      }
      // 기존 값에 정보를 덮어 씌웁니다.
      posts[index] = {
        ...posts[index],
        ...ctx.request.body,
      };
      ctx.body = posts[index];
    };

    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.