GET and POST done

This commit is contained in:
TypoMustakes
2024-04-22 14:50:21 +02:00
parent c250204ace
commit 4b20644236
3 changed files with 98 additions and 3 deletions

View File

@@ -1,3 +1,45 @@
fetch('https://localhost:5001/api/Customer')
let customers = [];
getCustomers();
async function getCustomers()
{
await fetch('https://localhost:5001/api/Customer')
.then(x => x.json())
.then(y => console.log(y));
.then(y => {
customers = y;
console.log(customers);
display();
});
}
function display()
{
document.getElementById('resultarea').innerHTML = '';
customers.forEach(t => {
document.getElementById('resultarea').innerHTML +=
'<tr><td>'
+ t.id +
'</td><td>'
+ t.name +
'</td></tr>';
});
}
function addCustomer()
{
let customerName = document.getElementById('customername').value;
fetch('https://localhost:5001/api/Customer', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ name: customerName })
})
.then(response => response)
.then(data =>
{
console.log("Success: ", data)
getCustomers();
})
.catch(error => console.error("Error: ", error));
}