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
- Hibernate
- 프로그래머스
- DISTINCT
- mariadb
- Java
- Client
- Jenkins
- TLS
- 책 정리
- vagrant
- Git
- centos7
- TypeScript
- sample
- github
- ssh
- jdbc
- Spring Legacy Project
- EC2
- 토비의스프링
- docker
- WebHook
- AWS
- window
- db
- 코딩테스트
- Linux
- SSL
- spring
- spring boot
Archives
- Today
- Total
Woopii Vyeolog
[HTML, JS] 간단하게 테스트 할 수 있는 API Client 본문
## Github URL : https://github.com/leewoopyo/TestApiClient
1. 소스코드
TestApiClient.html
<!DOCTYPE html>
<html>
<body>
<button onclick="callApi()">클릭</button>
<div id="show_result"></div>
<script>
function callApi() {
//Header
const config = {
method: "get"
};
//Call Api
fetch("http://localhost:19001/verification/api/info/java-version", config)
.then(response => response.json())
.then(data => {
console.log(data);
const div_data = document.createElement("div");
const show_result = document.getElementById("show_result");
div_data.textContent = JSON.stringify(data);
show_result.appendChild(div_data);
})
.catch(error => console.log(error));
}
</script>
</body>
</html>
'html,css,js' 카테고리의 다른 글
mouseover 시 slide 애니메이션을 가진 메뉴바 (0) | 2020.02.12 |
---|
Comments