잡동사니에도 사랑을

[21.10.19] exam01(01_helloAjax) - Ajax활용하여 txt파일 불러오기 본문

JAVA_EE/AJAX

[21.10.19] exam01(01_helloAjax) - Ajax활용하여 txt파일 불러오기

luvforjunk 2021. 10. 19. 12:45
728x90
반응형

Ajax를 활용하여 다른 페이지에 있는 데이터를 받아오는 방법을 알아보자.

Ajax 외 일반적인 웹은 새로고침을 할 때 새로운 URL이 호출되면서 페이지가 새로 뿌려진다.

하지만 Ajax를 이용하면 비동기 통신 방식으로 로드해올 수 있다.

예제를 살펴보자.

 

 

////////exam01.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="../css/common.css">
<link rel="stylesheet" href="../css/reset.css">
</head>
<body>
	<h1 class="title">$.ajax() 함수를 사용한 텍스트 읽기</h1>
	<div class="exec">
		<input type="button" value="txt파일 가져오기" id="mybtn" />
	</div>
	<div class="console" id="result"></div>
	
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$('#mybtn').click(function(){ 
	$.ajax({ /* 여기서 $는 jQuery이다. 코드를 줄 부분에 {}를 넣어주면 된다 */
		url: '../text/text01.txt',
		type: 'get', 
		dataType: 'text', /* 응답으로 text(문자열)이 온다 */ 
		timeout: 30000, /* 30초 */
		cache: false,
		success: function(data){ /* 문자열이 data로 들어온다 */
			//alert(data);
			$('#result').html(data);  /* 화면 이동없이 바로 밑에 뿌려진다 */
		},
		error: function(xhr, textStatus, errorThrown){
			$('div').html('<div>' + textStatus + '(HTTP-'+ xhr.status + ' / ' + errorThrown + ')<div>');
		}
	});
});
</script>	
</body>
</html>

*주요 내용

→ url을 통해 외부 데이터인 txt파일을 불러온다.

 

 

////////common.css

더보기

@charset "UTF-8";

html, body {
width: 100%;
height: 100%;
}

h1.title {
font-size: large;
border-left: 10px solid #7BAEB5;
border-bottom: 1px solid #7BAEB5;
padding: 10px;
width: auto;
background-color: #fff;
}

div.exec, div.console {
padding: 20px 15px;
border-bottom: 1px solid #7BAEB5;
}

div.console {
font-family: 'Courier New';
font-size: 12px;
font-style: italic;
line-height: 130%;
}

div.example {
padding: 10px 30px;
}

 

 

///////reset.css

더보기

@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

 

 

////////text01.txt

jQuery AJax 테스트
728x90
반응형