-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAjaxFetch.html
68 lines (47 loc) · 1.7 KB
/
AjaxFetch.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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>AJAX</title>
</head>
<body>
<h1>AJAX FETCH</h1>
<script>
function getWeather(woeid) {
fetch(`https://crossorigin.me/https://www.metaweather.com/api/location/${woeid}/`)
.then(result => {
// console.log(result);
return result.json();
})
.then(data => {
// console.log(data);
const today = data.consolidated_weather[0];
console.log(`Temperatures today in ${data.title} stay between ${today.min_temp} and ${today.max_temp}.`);
})
.catch(error => console.log(error));
}
getWeather(2487956);
getWeather(44418);
// async/await way
async function getWeatherAW(woeid) {
try {
const result = await fetch(`https://crossorigin.me/https://www.metaweather.com/api/location/${woeid}/`);
const data = await result.json();
const tomorrow = data.consolidated_weather[1];
console.log(`Temperatures tomorrow in ${data.title} stay between ${tomorrow.min_temp} and ${tomorrow.max_temp}.`);
return data;
} catch (error) {
alert(error);
}
}
getWeatherAW(2487956);
let dataLondon;
getWeatherAW(44418).then(data => {
dataLondon = data
console.log(dataLondon);
});
</script>
</body>
</html>