-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
65 lines (56 loc) · 1.45 KB
/
script.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
$(document).ready(main);
function main(){
$("#add-button").click(addUser);
$("#get-button").click(getUsers);
}
/*
Gets values from input bars, parses them into Json format, then stringifies it
and sends the string to server using Ajax.
*/
function addUser(){
console.log("Adding");
let name = $("#name").val();
let surname = $("#surname").val();
let email = $("#email").val();
$("#name").val('');
$("#surname").val('');
$("#email").val('');
let userJson = {"name" : name, "surname" : surname, "email" : email};
let user = JSON.stringify(userJson);
$.ajax({
url: "add.php",
method: "POST",
data: {
user : user
},
success(response){
alert(response);
}
});
}
/*
Sends request to php which (with Ajax) will respond with all the users in JSon
format, then parses it, adds some styling and appends to the page.
*/
function getUsers(){
$.ajax({
url: "get.php",
method: "GET",
success(response){
let users = JSON.parse(response);
var output = '';
for (var i in users){
output = output +
'<div class = "user">' +
'<ul>' +
'<li> ' + users[i].id + '</li>' +
'<li> ' + users[i].name + '</li>' +
'<li> ' + users[i].surname + '</li>' +
'<li> ' + users[i].email + '</li>' +
'</ul>' +
'</div>';
}
$("#users").html(output);
}
});
}