-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
38 lines (34 loc) · 1.25 KB
/
index.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
const onConsultarApi = async ()=>{
try
{
const input = document.getElementById("url")
let spinner = document.getElementById("spinner")
spinner.style.display = "flex"
const rawResponse = await fetch('https://rim-ug-329815.uc.r.appspot.com/predecir', {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({imagen: input.value})
});
const content = await rawResponse.json()
console.log(content)
if(rawResponse.ok)
{
if(!content.error)
{
document.getElementById("madurez").innerHTML = content.respuesta
}
}else{
alert("Al parecer la url que ingreso no es una imagen o el servio no esta disponible")
document.getElementById("madurez").innerHTML = "-1"
}
spinner.style.display = "none"
}catch(error){
alert("Al parecer la url que ingreso no es una imagen o el servio no esta disponible")
spinner.style.display = "none"
document.getElementById("madurez").innerHTML = "-1"
console.log(error)
}
}