『 JSON형식 취득하는 경우(클라이언트측) 』
<소스코드>
<script type="text/javascript">
$(document).ready(function(){
$('#jsonOut1').click(function(){
$.ajax({
type: "POST",
url : "${appUrl}/ajax/jsonOut1.html",
data : {"cd": "syasin"},
// 수신시의 미디어 타입
dataType: "json",
success:function(data){
//TODO:
alert(data);
}
});
});
});
</script>
<ol>
<li> <a href="${appUrl}/ajax/jsonOut1.html?cd=aaa">JSON형식 취득(GET으로 취득)</a></li>
<li> <span id="jsonOut1">JSON형식 취득(jQuery을 이용하여 취득)</span></li>
</ol>
'자바 > JAVA...Spring' 카테고리의 다른 글
Spring 3.2 & MyBatis] 전이되는 곳을 생략하는 경우(View의 패스가 없음) (0) | 2015.12.14 |
---|---|
Spring 3.2 & MyBatis] 전이되는 곳을 생략하는 경우(메서드 리턴값이 void) (0) | 2015.12.14 |
Spring 3.2 & MyBatis] JSON형식 취득하는 경우 (0) | 2015.12.11 |
Spring 3.2 & MyBatis] 파일 다운로드(Writer/OutputStream사용) (0) | 2015.12.10 |
Spring 3.2 & MyBatis] 파일 다운로드(ResponseEntity사용) (0) | 2015.12.10 |