efunRequest.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. //http 网络请求封装类(和业务相关的代码请不要写进这个类中)
  2. // import UserDataStorage from './UserDataStorage';
  3. class efunRequest {
  4. constructor() {
  5. this._url = '';
  6. this._params = {};
  7. this._data = {};
  8. this._header = {};
  9. this.xmlHTTPRequest = null;
  10. this._onSuccess = null;
  11. this._onFailed = null;
  12. this._deserialize = null;
  13. // 异步获取的
  14. this.uid = storage.load({
  15. key: 'uid'
  16. })
  17. }
  18. request(method) {
  19. const paramStr = () => {
  20. if (!this._params) {
  21. return ''
  22. }
  23. var pstr = '';
  24. for (let key in this._params) {
  25. pstr += `${key}=${this._params[key]}&`;
  26. }
  27. return pstr.slice(0, -1);
  28. }
  29. this.xmlHTTPRequest = new XMLHttpRequest();
  30. this.xmlHTTPRequest.open(method, this._url + '?' + paramStr(), true);
  31. this.xmlHTTPRequest.setRequestHeader('Content-Type', 'application/' + (method == 'POST' || method == 'PUT' ? 'x-www-form-urlencoded' : 'text'));
  32. this.xmlHTTPRequest.setRequestHeader('uid', this.uid ? this.uid : '');
  33. for (let key in this._header) {
  34. this.xmlHTTPRequest.setRequestHeader(key, this._header[key]);
  35. }
  36. this.xmlHTTPRequest.onreadystatechange = () => {
  37. this.whenResponse();
  38. }
  39. var sendBody = null;
  40. if (this._data && (method == 'POST' || method == 'PUT')) {
  41. var arr = new Array();
  42. var i = 0;
  43. for (var attr in this._data) {
  44. arr[i] = encodeURIComponent(attr) + '=' + encodeURIComponent(this._data[attr]);
  45. i++;
  46. }
  47. sendBody = '&' + arr.join('&');
  48. }
  49. this.xmlHTTPRequest.send(sendBody);
  50. return this;
  51. }
  52. get() {
  53. this.request('GET');
  54. return this;
  55. }
  56. post() {
  57. this.request('POST');
  58. return this;
  59. }
  60. put() {
  61. this.request('PUT');
  62. return this;
  63. }
  64. delete() {
  65. this.request('DELETE');
  66. return this;
  67. }
  68. whenResponse() {
  69. if (this.xmlHTTPRequest.readyState != 4) {
  70. return;
  71. }
  72. if (this._deserialize) {
  73. this._deserialize(this.xmlHTTPRequest.responseText, this);
  74. return;
  75. }
  76. let cb = this.xmlHTTPRequest.status == 200 ? this._onSuccess : this._onFailed;
  77. if (!cb) {
  78. return;
  79. }
  80. cb(this.xmlHTTPRequest.status, this.xmlHTTPRequest.responseText);
  81. }
  82. success(callback) {
  83. this._onSuccess = callback;
  84. return this;
  85. }
  86. fail(callback) {
  87. this._onFailed = callback;
  88. return this;
  89. }
  90. header(obj, rewrite) {
  91. if (rewrite) {
  92. this._header = obj;
  93. } else {
  94. for (let key in obj) {
  95. this._header[key] = obj[key];
  96. }
  97. }
  98. return this;
  99. }
  100. params(obj) {
  101. this._params = obj;
  102. return this;
  103. }
  104. data(obj) {
  105. this._data = obj;
  106. return this;
  107. }
  108. url(str) {
  109. this._url = str;
  110. return this;
  111. }
  112. responseDeserialize(func) {
  113. this._deserialize = func;
  114. return this;
  115. }
  116. static getHttpRequest() {
  117. let request = new efunRequest();
  118. // if (UserDataStorage.getToken()) {
  119. // request.header({
  120. // 'Authentication': UserDataStorage.getToken()
  121. // });
  122. // }
  123. request.responseDeserialize(function (res, req) {
  124. function callFailed(data) {
  125. if (req._onFailed) {
  126. req._onFailed(data);
  127. }
  128. }
  129. function callSuccess(data) {
  130. if (req._onSuccess) {
  131. req._onSuccess(data);
  132. }
  133. }
  134. let rObj = null;
  135. try {
  136. rObj = JSON.parse(res);
  137. } catch (e) {
  138. callFailed(e);
  139. return;
  140. }
  141. if (req.xmlHTTPRequest.status != 200) {
  142. callFailed(rObj);
  143. return;
  144. }
  145. if (!rObj.success) {
  146. callFailed(rObj);
  147. return;
  148. }
  149. callSuccess(rObj);
  150. });
  151. return request;
  152. }
  153. }
  154. export default efunRequest;