axios-嘗試串接外部資料
/courses/1497558/lectures/34320898/hotmart_lecture_video_download_link/61757226
1497558
axios.get('https://hexschool.github.io/ajaxHomework/data.json')
.then(function (response) {
console.log(response.data);
console.log(response.status);
console.log(response.statusText);
console.log(response.headers);
console.log(response.config);
});