-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfn.ts
43 lines (38 loc) · 1.05 KB
/
fn.ts
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
// interface AjaxParams {
// type: string,
// url: string,
// data: any,
// success: AjaxSuccessCallback;
// }
// interface AjaxSuccessCallback {
// (params:object): void;
// }
// interface Ajax {
// (params: AjaxParams): void;
// }
// const ajax: Ajax = function (params) {
// let { type = "post", url, data, success } = params;
// let xhr:XMLHttpRequest = new XMLHttpRequest();
// xhr.open(type, url, false);
// xhr.send(data);
// xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
// xhr.onreadystatechange = function () {
// if (xhr.readyState == 4) {
// if (xhr.status == 200 || xhr.status == 304) {
// let result = JSON.parse(xhr.responseText);
// success(result);
// }
// }
// }
// }
// ajax({
// type:"post",
// url:"http:***********",
// data:{
// username:"xiaoming",
// password:"888888"
// },
// success(obj:object){
// console.log(obj);
// }
// })