We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
홍균님과도 이야기를 나누었는데, api들의 url을 바꾸게 될 것 같습니다.
예를 들어 현재 post api의 경우
GET /find/board/article/list/ POST /save/board/article/ PUT /save/board/article/vote/ DELETE /remove/board/article/
와 같이, 실제 everytime에서 구현한 대로 되어있는데 url 맨 앞을 보면 find, save, remove 등으로 기능 위주로 분류되어 있는 것 같습니다.
find, save, remove
그런데 서버를 개발할 때 post api와 model 따로, comment 따로, user 따로 이런 식으로 model에서 해당하는 table?에 따라 분류가 되기 때문에 url도 마찬가지로
post GET /api/post/list/ POST /api/post/article/
board GET /api/board/list/
이런 식으로 /api/(해당 table name)/(해당 function name)/ 과 같이 바꾸고자 하는데 어떻게 생각하시나요?
/api/(해당 table name)/(해당 function name)/
The text was updated successfully, but these errors were encountered:
문서에 잘 정리되어 있으면 상관없을 것 같습니다!
Sorry, something went wrong.
No branches or pull requests
홍균님과도 이야기를 나누었는데, api들의 url을 바꾸게 될 것 같습니다.
예를 들어 현재 post api의 경우
와 같이, 실제 everytime에서 구현한 대로 되어있는데 url 맨 앞을 보면
find, save, remove
등으로 기능 위주로 분류되어 있는 것 같습니다.그런데 서버를 개발할 때 post api와 model 따로, comment 따로, user 따로 이런 식으로 model에서 해당하는 table?에 따라 분류가 되기 때문에 url도 마찬가지로
이런 식으로
/api/(해당 table name)/(해당 function name)/
과 같이 바꾸고자 하는데 어떻게 생각하시나요?
The text was updated successfully, but these errors were encountered: