-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteste.html
122 lines (116 loc) · 3.8 KB
/
teste.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<title>UmaPorTodas | Teste</title>
</head>
<body>
<div id="buscarRotas"></div>
<div id="buscarRotaEspecifica"></div>
<div id="salvarRota"></div>
<div id="atualizarRota"></div>
<div id="removerRota"></div>
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script type="text/javascript">
$(document).ready(function() {
// salvarRota({lat_from: '1', lgt_from: '2', lat_to: '3', lgt_to: '4', vehicle: 'onibus', date_time: '2018-04-22 04:35:00', favorite: 0, id_profile: 1});
buscarRotas();
buscarRotaEspecifica(2);
atualizarRota(2, {lat_to: '5', date_time: '2018-04-23 00:00:00'});
// removerRota(2);
// buscarRotas();
});
function salvarRota(json) {
$.ajax({
url: '/umaportodas/api/routes',
method: 'post',
dataType: 'json',
data: json,
async: false
})
.done(function(result) {
console.log(result);
$('#salvarRota').html("save success");
})
.fail(function() {
$('#salvarRota').html("save error");
})
.always(function() {
$('#salvarRota').html("save complete");
});
}
function atualizarRota(idRota, json) {
$.ajax({
url: '/umaportodas/api/routes/' + idRota,
method: 'put',
dataType: 'json',
data: json,
async: false
})
.done(function(result) {
console.log(result);
$('#atualizarRota').html("update success");
})
.fail(function() {
$('#atualizarRota').html("update error");
})
.always(function() {
$('#atualizarRota').html("update complete");
});
}
function buscarRotas() {
$.ajax({
url: '/umaportodas/api/routes',
dataType: 'json',
async: false
})
.done(function(result) {
console.log(result);
$('#buscarRotas').html("getall success");
})
.fail(function() {
$('#buscarRotas').html("getall error");
})
.always(function() {
$('#buscarRotas').html("getall complete");
});
}
function buscarRotaEspecifica(idRota) {
$.ajax({
url: '/umaportodas/api/routes/' + idRota,
dataType: 'json',
async: false
})
.done(function(result) {
console.log(result);
$('#buscarRotaEspecifica').html("get specific success");
})
.fail(function() {
$('#buscarRotaEspecifica').html("get specific error");
})
.always(function() {
$('#buscarRotaEspecifica').html("get specific complete");
});
}
function removerRota(idRota) {
$.ajax({
url: '/umaportodas/api/routes/' + idRota,
method: 'delete',
dataType: 'json',
async: false
})
.done(function() {
$('#removerEspecifica').html("remove success");
})
.fail(function() {
$('#removerEspecifica').html("remove error");
})
.always(function() {
$('#removerEspecifica').html("remove complete");
});
}
</script>
</body>
</html>