Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 거북이 대포 게임
- 리액트
- Colaboratory 글자 깨짐
- 모던자바스크립트
- Python
- 웹 게임을 만들며 배우는 리액트
- 자바스크립트
- DB Browser
- react오류
- intellij
- 타자 게임 만들기
- JS 개념
- Spring-Framework
- Do it 자바스크립트 + 제이쿼리 입문
- Concurrently
- props
- react
- 모두의 파이썬
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- node.js 설치
- 따라하며 배우는 노드 리액트 기본 강의
- googleColaboratory
- vs code 내 node
- 계산맞추기 게임
- 인프런
- node.js로 로그인하기
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- spring-boot
- 노드에 리액트 추가하기
Archives
- Today
- Total
프로그래밍 삽질 중
form내 action 경로가 실행되기 전 onSubmit 사용하기 본문
* 상황
- form태그에서 지정한 경로로 정보를 보내기 전 유효성 검사 필요(각각 이메일, 닉네임, 비밀번호)
- form 태그 내 onsubmit을 이용함
* 참고한 블로그
https://180bpm.tistory.com/95
https://b.redinfo.co.kr/43
[Front]
- action으로 지정한 경로가 전송되기 전 onSubmit에서 지정한 함수 실행하기
//onsubmit에서 지정 시 return을 앞에 붙일 것
<form id="join-form" onsubmit="return checkAll();" action="/auth/join" method="post">
<div class="input-group">
<label for="join-email">이메일</label>
<input id="join-email" type="email" name="email" class="email" placeholder="ex) test@naver.com">
</div>
<div class="input-group">
<label for="join-nick">닉네임</label>
<input id="join-nick" type="text" name="nickname" class="nickname" placeholder="영어 또는 한글만 입력">
</div>
<div class="input-group">
<label for="join-password">비밀번호</label>
<input id="join-password" type="password" name="password" class="password" placeholder="영어와 숫자 4~12자 입력">
</div>
<button id="join-btn" type="submit" class="btn">회원가입</button>
</form>
function checkAll() {
const check_submit = confirm("회원가입 하시겠습니까?");
if (check_submit) {
//class값으로 value값 찾음
const email = document.querySelector(".email").value;
const nickname = document.querySelector(".nickname").value;
const password = document.querySelector('.password').value;
//정규식 사용
const emailReg = /^[A-Za-z0-9_]+[A-Za-z0-9]*[@]{1}[A-Za-z0-9]+[A-Za-z0-9]*[.]{1}[A-Za-z]{1,3}$/;
const nicknameReg = /([가-힣a-zA-Z]+$)/;
const passwordReg = /^[a-zA-z0-9]{4,12}$/;
if (!emailReg.test(email)) {
alert("이메일 관련 오류가 있습니다.");
return false;
}
if (!nicknameReg.test(nickname)) {
alert("닉네임은 영어 또는 한글만 입력하세요.");
return false;
}
if (!passwordReg.test(password)) {
alert("비밀번호는 영어와 숫자 4~12자 입력하세요.");
return false;
}
}
return check_submit;
}
[Back]
router.post("/join", isNotLoggedIn, async (req, res, next) => {
const { email, nickname, password } = req.body;
try {
const exUser = await User.findOne({ where: { email } });
console.log(exUser);
if (exUser) {
return res.redirect("/join?error=exist");
}
const hash = await bcrypt.hash(password, 12);
await User.create({
email,
nickname,
password: hash,
});
return res.redirect("/login");
} catch (error) {
console.log(error);
return next(error);
}
});
'과거 프로그래밍 자료들 > 프로젝트' 카테고리의 다른 글
[영어단어장 version2.0] 단어장 기능 및 로그인 보완, sns 기능 추가(pm2 stopped) (2) | 2022.09.08 |
---|---|
ubuntu git 관련 오류 (0) | 2022.09.08 |
SNS서비스 좋아요 버튼 및 좋아요 취소 버튼 만들기 (0) | 2022.09.07 |
sequelize belongsToMany 내 as 시퀄라이즈 사용 (0) | 2022.09.06 |
req.user.id = undefined 일 때 조건(로그인/비로그인일 경우) (0) | 2022.09.05 |