-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
82 lines (54 loc) · 1.61 KB
/
main.js
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const title = document.querySelector(".targeta h2");
const frase = document.querySelector('.targeta p');
const bton = document.querySelector('.targeta .targeta__bton')
const url = 'https://api.adviceslip.com/advice';
const Frase = ()=>{
let randomNumber = Math.random();
let apiUrl = `${url}?random=${randomNumber}`;
fetch(apiUrl)
.then(response =>{
if(response.status === 200){
return response.json();
}else{
throw new Error('Error: ' + response.status);
}
})
.then( data => {
title.textContent = `Advice # ${data.slip.id}`;
frase.innerHTML = `"${data.slip.advice}"`;
})
.catch(err =>console.error('Error:', err));
}
Frase()
bton.addEventListener('click',()=>{
Frase()
});
/*
const inicio = ()=>{
fetch(url)
.then(response =>{
return response.json();
})
.then( data => {
title.textContent = `Advice # ${data.slip.id}`;
frase.innerHTML = `"${data.slip.advice}"`;
})
.catch(err =>console.error('Error:', err));
}
bton.addEventListener('click',()=>{
fetch(url)
.then(response =>{
if(response.status === 200){
return response.json();
}else{
throw new Error('Error: ' + response.status);
}
})
.then( data => {
title.textContent = `Advice # ${data.slip.id}`;
frase.innerHTML = `"${data.slip.advice}"`;
console.log(data)
})
.catch(err =>console.error('Error:', err));
});
*/