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
export function getDoctorList() { return axios.get("/doctor/"); } export function getDoctor() { return axios.get("/doctor/"); }
patient.js에서 93~99째줄에 getDoctorList()와 getDoctor()이 있는데 둘이 같은 기능입니다. getDoctor()또는 getDoctorList() 둘중 하나를 삭제하는 것이 좋다고 생각드는데, 어떤걸 지우는게 좋을까요?
getDoctorList()
getDoctor()
The text was updated successfully, but these errors were encountered:
/doctor/에 get 요청을 보낼 경우에 token이 없는 경우 list를 token이 있는 경우는 해당 doctor를 응답합니다.
/doctor/
또한, /doctor/<user_id>/에 get 요청을 보낼 경우는 user_id에 해당하는 doctor를 응답합니다.
/doctor/<user_id>/
api 수정 또는 함수 구현이 필요할 것 같습니다.
Sorry, something went wrong.
jshong0907
phobyjun
Sparkling-SAKE
No branches or pull requests
patient.js에서 93~99째줄에
getDoctorList()
와getDoctor()
이 있는데 둘이 같은 기능입니다.getDoctor()
또는getDoctorList()
둘중 하나를 삭제하는 것이 좋다고 생각드는데, 어떤걸 지우는게 좋을까요?The text was updated successfully, but these errors were encountered: