일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드 개발 강좌
- 스카이 안드로이드폰 시리우스 K양 동영상
- sky 시리우스폰
- 안드로이드 개발 2.0
- 스카이 안드로이드폰 시리우스
- SKY 시리우스
- 인기있는 블로그 만들기
- 안드로이드 2.0 개발
- 아이폰 배경화면
- 영어
- 구글 안드로이드
- 안드로이드폰
- 구글 안드로이드 개발
- 아이폰 바탕화면
- 구글안드로이드
- Form Stuff
- objective-c
- 안드로이드
- 안드로이드 바탕화면
- 안드로이드개발
- 안드로이드 개발
- 하루 한마디 영어
- 스마트폰 배경화면
- android
- 안드로이드 배경화면
- 안드로이드2.0개발
- 안드로이드2.0
- MapView
- 하루한마디영어
- 안드로이드 개발 2.0 강좌
- Today
- Total
moozi
vuejsAxios.html 본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Axios</title>
</head>
<body>
<div id="app">
<button v-on:click="fetchData">get data</button>
</div>
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script>
new Vue({
el: '#app',
methods: {
fetchData: function() {
axios.get('https://jsonplaceholder.typicode.com/users/')
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});
}
}
});
</script>
</body>
</html>
'TIS_2020 > 응용SW2020_1기' 카테고리의 다른 글
vuejsAjax03.html (0) | 2020.05.12 |
---|---|
vuejsAjax02.html with Axios (0) | 2020.05.12 |
vuejsAjax01 (0) | 2020.05.12 |
vue.js ajax (0) | 2020.05.12 |
jquery03.html (0) | 2020.05.06 |