-
Notifications
You must be signed in to change notification settings - Fork 56
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
[김미진]Week5 #213
base: part1-김미진
Are you sure you want to change the base?
The head ref may contain hidden characters: "part1-\uAE40\uBBF8\uC9C4-week5"
[김미진]Week5 #213
Conversation
- label태그의 for값과 input태그의 id값 수정 - form태그안에 div태그의 클래스명 수정 - 파일경로 수정
refactor(mentor): - / 제거했습니다
refactor(mentor) - 모듈 적용 - 수정사항 반영하여 코드 리팩토링
d5835f2
to
0591d6e
Compare
0591d6e
to
7d83e0f
Compare
// 눈 아이콘 클릭 시 이미지 및 타입 변경 | ||
function eyeToggle(e){ | ||
e.preventDefault(); | ||
|
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.
indexOf
도 틀린건 아니지만 맥락상으로는 includes
가 더 맞겠네요. 아래처럼 별도의 분기처리(if, else)없이 리팩토링 가능합니다.
const eyeIconSrc = e.target.src.includes('off') ? "./images/ico-eye-on.svg" : "./images/ico-eye-off.svg";
const passwordInputType = e.target.src.includes('off') ? "password" : "text";
e.target.src = eyeIconSrc;
pwInput.type = passwordInputType;
|
||
if(localStorage.getItem('accessToken')) join(email, password); | ||
}catch(error){ | ||
console.log(error); |
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.
단순히 console을 찍을게 아닌, 사용자에게 에러가 났으니 다시 어떤 행동을 하도록 유도해주셔합니다. (ex. 새로고침)
@@ -0,0 +1,65 @@ | |||
const pwCheckInput = document.getElementById('signup-check-password'); | |||
const correct = { |
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.
pattern
과 userInfo
는 다른 성질의 데이터입니다. 분리해주세요.
: 409오류는 Status 의미로 "Confilct" 입니다. 일단은 HttpStatusCode에 대한 이해가 필요하고, 중복된 데이터를 보내서 충돌이 일어났을 때 해당에러를 내뱉는 경우가 맞다면, 오류라고 볼 수 없고 서버에서 의도한 에러라고 판단해야됩니다. |
요구사항
기본
심화
주요 변경사항
멘토에게