blob: da5052d67e042f4a6d137c352b73c8c561d81e05 (
plain)
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
|
var ajax = {
get: function(url, data) {
if (typeof data == 'object') {
var index = 0;
for (var key in data) {
var val = data[key];
url += index === 0 && url.indexOf('?') === -1 ? '?' : '&';
url += encodeURIComponent(key) + '=' + encodeURIComponent(val);
}
}
return this.raw(url);
},
post: function(url, body) {
var opts = {
method: 'POST'
};
if (body)
opts.body = body;
return this.raw(url, opts);
},
raw: function(url, options) {
if (!options)
options = {}
return fetch(url, Object.assign({
headers: {
'X-Requested-With': 'XMLHttpRequest',
}
}, options))
.then(resp => {
return resp.json()
})
}
};
function extend(a, b) {
return Object.assign(a, b);
}
function ge(id) {
return document.getElementById(id);
}
|