-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
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
실습 - 페이지 설정 #94
Open
movingone
wants to merge
11
commits into
next-step:movingone
Choose a base branch
from
movingone:step1
base: movingone
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
실습 - 페이지 설정 #94
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fe7a701
fix: theme 추가로 인한 링크 추가 및 기존 링크 수정
boorownie 97663d9
feat: theme 추가로 인한 html 및 js 파일 생성
boorownie 0d7aa86
feat : 실습페이지 설정
movingone 63dbae7
feat : step1 reserve manage
movingone 21bcea7
refactor : id change AtomomicLong id
movingone 23e18f1
feat : database connection
movingone 63396ac
feat : step3 time manage function add
movingone 0d588c0
fix : error
movingone be6b379
fix : admin/time page time add function problem
movingone bf86d25
feat : Time request response Add Error
movingone 8214b6e
fix : time page error
movingone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,5 @@ create table reservation | |
); | ||
|
||
|
||
select * | ||
from reservation_time; |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
시간을 추가함에 따라서 화면에서도 추가된 시간이 보여야 한다 생각했는데 차이가 없습니다
시간을 추가한 순간
PostMapping
과GetMapping
이 동시에 일어나는 개념일까요?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
시간이 추가가 되면 프론트엔드 로직에서 서버에게 시간 리스트를 요청해요.
위의 사진에서 보시듯
GET localhost:8080/times
요청을 보내는데요,현재 동건님 서버에서는 해당 api 를 제공하고 있지 않습니다!
한 번 만들어주시면 될 것 같아요 :)