1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//官方寫法
$.ajax({
url: 'https://randomuser.me/api/',
dataType: 'json',
success: function(data) {
console.log(data);
}
});
//用axios改寫
axios.get("https://randomuser.me/api/")
.then(res => {
console.log(res.data.results)
})
.catch(err => {
console.log(err.response)
})
|