[박수훈] sprint 1, 2 수정, sprint 3 제출 #30
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1. 스프린트 미션 요구사항 체크리스트
요구사항
기본 요구사항
공통
Article API (
ArticleService.js)'https://panda-market-api-crud.vercel.app/docs/#/Article'API를 이용하여 아래 함수들을 구현해 주세요.getArticleList(): GET 메서드를 사용해 주세요.page,pageSize,keyword쿼리 파라미터를 이용해 주세요.getArticle(): GET 메서드를 사용해 주세요.createArticle(): POST 메서드를 사용해 주세요.title,content,image를 포함해 주세요.patchArticle(): PATCH 메서드를 사용해 주세요.deleteArticle(): DELETE 메서드를 사용해 주세요.fetch혹은axios를 이용해 주세요..then()메서드를 이용하여 비동기 처리를 해주세요..catch()를 이용하여 오류 처리를 해주세요.Product API (
ProductService.js)'https://panda-market-api-crud.vercel.app/docs/#/Product'API를 이용하여 아래 함수들을 구현해 주세요.getProductList(): GET 메서드를 사용해 주세요.page,pageSize,keyword쿼리 파라미터를 이용해 주세요.getProduct(): GET 메서드를 사용해 주세요.createProduct(): POST 메서드를 사용해 주세요.name,description,price,tags,images를 포함해 주세요.patchProduct(): PATCH 메서드를 사용해 주세요.deleteProduct(): DELETE 메서드를 사용해 주세요.async/await을 이용하여 비동기 처리를 해주세요.try/catch를 이용하여 오류 처리를 해주세요.파일 구조 및 실행
export를 활용해 주세요.ProductService.js파일 Product API 관련 함수들을 작성해 주세요.ArticleService.js파일에 Article API 관련 함수들을 작성해 주세요.main.js파일에 작성해 주세요.import를 활용해 주세요.2. 주요 변경사항
Sprint Mission 1, 2 피드백 반영 (수정)
Sprint Mission 3
ArticleService,ProductService,main코딩 및 테스트 완료3. 멘토님에게 남길 메시지
안녕하세요 멘토님! 스프린트 미션 3 (및 1, 2 리팩토링) 제출합니다.
요구사항에 맞춰 최대한 진행했습니다.
지난 미션의 심화 요구사항이었던 구글 애널리틱스는 코드는 추가했으나 ID 발급을 하지 않아 주석 처리해 두었습니다.
부족한 부분이 많겠지만 코드 리뷰 부탁드립니다! 감사합니다.