sboard/reply.jsp ( getJSON() 이용 )
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ include file="/WEB-INF/views/include/header.jsp" %>
<center>
<h3>AJAX TEST</h3>
Total : <span id="total_conunt"></span>
<script>
var bno = 15; // tbl_board에서 존재하는 bno값 입력 테스트
$.getJSON("/replies/all/"+bno,
function(data){
$("#total_conunt").text(data.length); //객체 길이
}
);
</script>
<%@ include file="/WEB-INF/views/include/footer.jsp" %>
==== 설명 ====
@RestController의 경우 객체를 JSON 방식으로 전달하기 때문에 jQuery를 이용해서 호출할 때는 getJSON()을 이용합니다.
- 이전글include/header.jsp 24.07.31
- 다음글sboard/reply.jsp ( 리스트 출력 ) 24.07.31
댓글목록
등록된 댓글이 없습니다.