在这个社会转型期,最大的悲剧不是坏人的嚣张,而是好人的过度沉默。——马丁·路德·金
非常简单啦~
大家可以拿去任意定制,比如请求方式使用参数传入、指定参数类型、调用时控制是否同步等
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
| var Ajax = {
dataFormat: function (data) { if (data == null || "" === data) { return ""; } return "?" + Object.keys(data).map(function (key) { return encodeURIComponent(key) + "=" + encodeURIComponent(data[key]); }).join("&"); },
get: function (url, data, fn) { var xhr = new XMLHttpRequest(); xhr.open('GET', url + this.dataFormat(data), false); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4) { if (xhr.status == 200 || xhr.status == 304) { var responseText = xhr.responseText var response = JSON.parse(responseText); } } } xhr.send(); },
post: function (url, data, fn) { var xhr = new XMLHttpRequest(); xhr.open('POST', url, false); xhr.setRequestHeader('Content-Type', 'application/json'); xhr.onreadystatechange = function () { if (xhr.readyState == 4) { if (xhr.status == 200 || xhr.status == 304) { var responseText = xhr.responseText var response = JSON.parse(responseText); } } } xhr.send(data); } }
|