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
현재 크루들의 출결 현황은 GET /crew을 요청한 후 처리합니다.
GET /crew
milky-way/src/main/resources/static/index.html
Lines 42 to 49 in 255439c
문제는 최초로 출결현황을 받은 뒤 아래의 코드로 인해 크루 업데이트가 5초마다 1번씩 새로고침되어 프론트 페이지가 끊깁니다.
Lines 94 to 96 in 255439c
이를 비동기적으로 처리기 위해 서버에 websocket 을 도입하면 아래와 같이 시스템을 개선시킬 수 있습니다.
websocket
The text was updated successfully, but these errors were encountered:
websocket을 사용하는 것도 방법이 될 수 있지만, 크롤링을 사용하지 않고, Google Form에서 Script를 사용해 Webhook을 사용하면 더 간편하게 할 수 있어 보이네요 (Reference)
Sorry, something went wrong.
No branches or pull requests
현재 크루들의 출결 현황은
GET /crew
을 요청한 후 처리합니다.milky-way/src/main/resources/static/index.html
Lines 42 to 49 in 255439c
문제는 최초로 출결현황을 받은 뒤 아래의 코드로 인해 크루 업데이트가 5초마다 1번씩 새로고침되어 프론트 페이지가 끊깁니다.
milky-way/src/main/resources/static/index.html
Lines 94 to 96 in 255439c
이를 비동기적으로 처리기 위해 서버에
websocket
을 도입하면 아래와 같이 시스템을 개선시킬 수 있습니다.The text was updated successfully, but these errors were encountered: