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
- chart.js
- 오류
- bootstrap
- HTML
- github
- error
- 스파르타코딩클럽
- vscode
- CSS
- 티스토리챌린지
- jQuery
- spring
- restapi
- JavaScript
- icon
- 이클립스
- 기업설명회
- 웹개발
- Firebase
- 자바
- SQL
- myBatis
- AJAX
- Eclipse
- SQLD
- 깃허브
- 오블완
- java
- 코딩
- firestore
Archives
- Today
- Total
푸들푸들
1211 Javascript 중복 검사 본문
대륙 추가 시
중복 검사(대륙 확인) 후
- 중복: alert('중복')
- 중복X: 대륙추가 <input>에 자동 입력
<h2>대륙 추가</h2>
<br>
<div>
대륙 입력 <br>
<input type="text" id="continentNameConfirm" name="continentNameConfirm" placeholder="중복 검사">
<button id="btnConfirm" type="button">대륙 확인</button> <!-- 중복 체크 -->
</div>
<form>
<input type="text" id="continentName" readonly>
<button type="button">대륙 추가</button>
</form>
<script>
$('#btnConfirm').click(function(){
$.ajax({
url:'addContinent/'+$('#continentNameConfirm').val()
, method:'GET' // 디폴트
}).done(function(result){
if(result == 1){
alert('중복입니다');
} else {
$('#continentName').val($('#continentNameConfirm').val());
}
}).fail(function(){
alert('비동기호출(ajax) 실패');
});
})
</script>
result = Integer continentCnt (컨트롤러)
result = 1 = count = 같은 값이 존재 -> 중복
***
@Mapper
public interface DBMapper {
Integer continentCnt(String continentName);
}
count 값 받기위해 Integer
<select id="continentCnt" parameterType="String" resultType="Integer">
SELECT COUNT(*)
FROM continent
WHERE continent_name = #{continentName}
</select>
@Controller
public class HomeController {
@GetMapping("/addContinent")
public String addContinent() {
return "addContinent";
}
}
@RestController
public class HomeRest {
@Autowired DBMapper dbMapper;
@GetMapping("/addContinent/{continentNameConfirm}")
public Integer continentCnt(@PathVariable String continentNameConfirm) {
return dbMapper.continentCnt(continentNameConfirm);
}
}
'구디아카데미 > JAVA' 카테고리의 다른 글
[HTML] 이스케이프 문자 (0) | 2024.12.12 |
---|---|
[Sakila] 통계 쿼리 연습 (1) | 2024.12.12 |
1211 Javascript 시험지 form (0) | 2024.12.11 |
1211 Javascript, AJax, RestAPI select+조건 (0) | 2024.12.11 |
1210 Javascript 퍼머링크, 차트 (0) | 2024.12.10 |