15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
const apiUrl = "http://localhost:5011";
|
|
|
|
function orkodyo(){
|
|
let reply;
|
|
const requestOptions = {
|
|
method: "GET",
|
|
redirect: "follow"
|
|
};
|
|
|
|
fetch(apiUrl + "/api/pizze", requestOptions)
|
|
.then((response) => response.text())
|
|
.then((result) => alert(result))
|
|
.catch((error) => console.error(error));
|
|
}
|