-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.js
51 lines (43 loc) · 1.14 KB
/
form.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
function handleForm(l){
l.preventDefault()
const name = document.getElementById('name').value
const gender = document.getElementById('gender').value
const age = Number(document.getElementById('age').value)
console.log({name,age,gender})
alert('welcome' + name)
}
// api
fetch('https://myapi.com/users', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({name, age, gender})
.then(req => req.json())
.then(data => console.log(data))
.catch(err => console.log(err))
}
/*
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
var raw = JSON.stringify({
"phone": "9546785675",
"hasVisited": false,
"address": "511 ne idontknow street",
"fname": "jose",
"lname": "garcia",
"electronicReceipt": false,
"vip": false,
"email": "[email protected]"
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("http://localhost:5000/customer/", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
*/