luch-request.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. import "./chunk-UQGIA5KH.js";
  2. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/utils.js
  3. var toString = Object.prototype.toString;
  4. function isArray(val) {
  5. return toString.call(val) === "[object Array]";
  6. }
  7. function isObject(val) {
  8. return val !== null && typeof val === "object";
  9. }
  10. function isDate(val) {
  11. return toString.call(val) === "[object Date]";
  12. }
  13. function isURLSearchParams(val) {
  14. return typeof URLSearchParams !== "undefined" && val instanceof URLSearchParams;
  15. }
  16. function forEach(obj, fn) {
  17. if (obj === null || typeof obj === "undefined") {
  18. return;
  19. }
  20. if (typeof obj !== "object") {
  21. obj = [obj];
  22. }
  23. if (isArray(obj)) {
  24. for (var i = 0, l = obj.length; i < l; i++) {
  25. fn.call(null, obj[i], i, obj);
  26. }
  27. } else {
  28. for (var key in obj) {
  29. if (Object.prototype.hasOwnProperty.call(obj, key)) {
  30. fn.call(null, obj[key], key, obj);
  31. }
  32. }
  33. }
  34. }
  35. function isPlainObject(obj) {
  36. return Object.prototype.toString.call(obj) === "[object Object]";
  37. }
  38. function deepMerge() {
  39. let result = {};
  40. function assignValue(val, key) {
  41. if (typeof result[key] === "object" && typeof val === "object") {
  42. result[key] = deepMerge(result[key], val);
  43. } else if (typeof val === "object") {
  44. result[key] = deepMerge({}, val);
  45. } else {
  46. result[key] = val;
  47. }
  48. }
  49. for (let i = 0, l = arguments.length; i < l; i++) {
  50. forEach(arguments[i], assignValue);
  51. }
  52. return result;
  53. }
  54. function isUndefined(val) {
  55. return typeof val === "undefined";
  56. }
  57. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/helpers/buildURL.js
  58. function encode(val) {
  59. return encodeURIComponent(val).replace(/%40/gi, "@").replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
  60. }
  61. function buildURL(url, params, paramsSerializer) {
  62. if (!params) {
  63. return url;
  64. }
  65. var serializedParams;
  66. if (paramsSerializer) {
  67. serializedParams = paramsSerializer(params);
  68. } else if (isURLSearchParams(params)) {
  69. serializedParams = params.toString();
  70. } else {
  71. var parts = [];
  72. forEach(params, function serialize(val, key) {
  73. if (val === null || typeof val === "undefined") {
  74. return;
  75. }
  76. if (isArray(val)) {
  77. key = key + "[]";
  78. } else {
  79. val = [val];
  80. }
  81. forEach(val, function parseValue(v) {
  82. if (isDate(v)) {
  83. v = v.toISOString();
  84. } else if (isObject(v)) {
  85. v = JSON.stringify(v);
  86. }
  87. parts.push(encode(key) + "=" + encode(v));
  88. });
  89. });
  90. serializedParams = parts.join("&");
  91. }
  92. if (serializedParams) {
  93. var hashmarkIndex = url.indexOf("#");
  94. if (hashmarkIndex !== -1) {
  95. url = url.slice(0, hashmarkIndex);
  96. }
  97. url += (url.indexOf("?") === -1 ? "?" : "&") + serializedParams;
  98. }
  99. return url;
  100. }
  101. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/helpers/isAbsoluteURL.js
  102. function isAbsoluteURL(url) {
  103. return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
  104. }
  105. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/helpers/combineURLs.js
  106. function combineURLs(baseURL, relativeURL) {
  107. return relativeURL ? baseURL.replace(/\/+$/, "") + "/" + relativeURL.replace(/^\/+/, "") : baseURL;
  108. }
  109. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/core/buildFullPath.js
  110. function buildFullPath(baseURL, requestedURL) {
  111. if (baseURL && !isAbsoluteURL(requestedURL)) {
  112. return combineURLs(baseURL, requestedURL);
  113. }
  114. return requestedURL;
  115. }
  116. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/core/settle.js
  117. function settle(resolve, reject, response) {
  118. const validateStatus2 = response.config.validateStatus;
  119. const status = response.statusCode;
  120. if (status && (!validateStatus2 || validateStatus2(status))) {
  121. resolve(response);
  122. } else {
  123. reject(response);
  124. }
  125. }
  126. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/adapters/index.js
  127. var mergeKeys = (keys, config2) => {
  128. let config = {};
  129. keys.forEach((prop) => {
  130. if (!isUndefined(config2[prop])) {
  131. config[prop] = config2[prop];
  132. }
  133. });
  134. return config;
  135. };
  136. var adapters_default = (config) => {
  137. return new Promise((resolve, reject) => {
  138. let fullPath = buildURL(buildFullPath(config.baseURL, config.url), config.params, config.paramsSerializer);
  139. const _config = {
  140. url: fullPath,
  141. header: config.header,
  142. complete: (response) => {
  143. config.fullPath = fullPath;
  144. response.config = config;
  145. response.rawData = response.data;
  146. try {
  147. let jsonParseHandle = false;
  148. const forcedJSONParsingType = typeof config.forcedJSONParsing;
  149. if (forcedJSONParsingType === "boolean") {
  150. jsonParseHandle = config.forcedJSONParsing;
  151. } else if (forcedJSONParsingType === "object") {
  152. const includesMethod = config.forcedJSONParsing.include || [];
  153. jsonParseHandle = includesMethod.includes(config.method);
  154. }
  155. if (jsonParseHandle && typeof response.data === "string") {
  156. response.data = JSON.parse(response.data);
  157. }
  158. } catch (e) {
  159. }
  160. settle(resolve, reject, response);
  161. }
  162. };
  163. let requestTask;
  164. if (config.method === "UPLOAD") {
  165. delete _config.header["content-type"];
  166. delete _config.header["Content-Type"];
  167. let otherConfig = {
  168. filePath: config.filePath,
  169. name: config.name
  170. };
  171. const optionalKeys = [
  172. "files",
  173. "file",
  174. "timeout",
  175. "formData"
  176. ];
  177. requestTask = uni.uploadFile({ ..._config, ...otherConfig, ...mergeKeys(optionalKeys, config) });
  178. } else if (config.method === "DOWNLOAD") {
  179. const optionalKeys = [
  180. "timeout"
  181. ];
  182. requestTask = uni.downloadFile({ ..._config, ...mergeKeys(optionalKeys, config) });
  183. } else {
  184. const optionalKeys = [
  185. "data",
  186. "method",
  187. "timeout",
  188. "dataType",
  189. "responseType",
  190. "withCredentials"
  191. ];
  192. requestTask = uni.request({ ..._config, ...mergeKeys(optionalKeys, config) });
  193. }
  194. if (config.getTask) {
  195. config.getTask(requestTask, config);
  196. }
  197. });
  198. };
  199. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/core/dispatchRequest.js
  200. var dispatchRequest_default = (config) => {
  201. return adapters_default(config);
  202. };
  203. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/core/InterceptorManager.js
  204. function InterceptorManager() {
  205. this.handlers = [];
  206. }
  207. InterceptorManager.prototype.use = function use(fulfilled, rejected) {
  208. this.handlers.push({
  209. fulfilled,
  210. rejected
  211. });
  212. return this.handlers.length - 1;
  213. };
  214. InterceptorManager.prototype.eject = function eject(id) {
  215. if (this.handlers[id]) {
  216. this.handlers[id] = null;
  217. }
  218. };
  219. InterceptorManager.prototype.forEach = function forEach2(fn) {
  220. this.handlers.forEach((h) => {
  221. if (h !== null) {
  222. fn(h);
  223. }
  224. });
  225. };
  226. var InterceptorManager_default = InterceptorManager;
  227. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/core/mergeConfig.js
  228. var mergeKeys2 = (keys, globalsConfig, config2) => {
  229. let config = {};
  230. keys.forEach((prop) => {
  231. if (!isUndefined(config2[prop])) {
  232. config[prop] = config2[prop];
  233. } else if (!isUndefined(globalsConfig[prop])) {
  234. config[prop] = globalsConfig[prop];
  235. }
  236. });
  237. return config;
  238. };
  239. var mergeConfig_default = (globalsConfig, config2 = {}) => {
  240. const method = config2.method || globalsConfig.method || "GET";
  241. let config = {
  242. baseURL: config2.baseURL || globalsConfig.baseURL || "",
  243. method,
  244. url: config2.url || "",
  245. params: config2.params || {},
  246. custom: { ...globalsConfig.custom || {}, ...config2.custom || {} },
  247. header: deepMerge(globalsConfig.header || {}, config2.header || {})
  248. };
  249. const defaultToConfig2Keys = ["getTask", "validateStatus", "paramsSerializer", "forcedJSONParsing"];
  250. config = { ...config, ...mergeKeys2(defaultToConfig2Keys, globalsConfig, config2) };
  251. if (method === "DOWNLOAD") {
  252. const downloadKeys = [
  253. "timeout"
  254. ];
  255. config = { ...config, ...mergeKeys2(downloadKeys, globalsConfig, config2) };
  256. } else if (method === "UPLOAD") {
  257. delete config.header["content-type"];
  258. delete config.header["Content-Type"];
  259. const uploadKeys = [
  260. "files",
  261. "file",
  262. "filePath",
  263. "name",
  264. "timeout",
  265. "formData"
  266. ];
  267. uploadKeys.forEach((prop) => {
  268. if (!isUndefined(config2[prop])) {
  269. config[prop] = config2[prop];
  270. }
  271. });
  272. if (isUndefined(config.timeout) && !isUndefined(globalsConfig.timeout)) {
  273. config["timeout"] = globalsConfig["timeout"];
  274. }
  275. } else {
  276. const defaultsKeys = [
  277. "data",
  278. "timeout",
  279. "dataType",
  280. "responseType",
  281. "withCredentials"
  282. ];
  283. config = { ...config, ...mergeKeys2(defaultsKeys, globalsConfig, config2) };
  284. }
  285. return config;
  286. };
  287. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/core/defaults.js
  288. var defaults_default = {
  289. baseURL: "",
  290. header: {},
  291. method: "GET",
  292. dataType: "json",
  293. paramsSerializer: null,
  294. responseType: "text",
  295. custom: {},
  296. timeout: 6e4,
  297. withCredentials: false,
  298. validateStatus: function validateStatus(status) {
  299. return status >= 200 && status < 300;
  300. },
  301. // 是否尝试将响应数据json化
  302. forcedJSONParsing: true
  303. };
  304. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/utils/clone.js
  305. var clone = function() {
  306. "use strict";
  307. function _instanceof(obj, type) {
  308. return type != null && obj instanceof type;
  309. }
  310. var nativeMap;
  311. try {
  312. nativeMap = Map;
  313. } catch (_) {
  314. nativeMap = function() {
  315. };
  316. }
  317. var nativeSet;
  318. try {
  319. nativeSet = Set;
  320. } catch (_) {
  321. nativeSet = function() {
  322. };
  323. }
  324. var nativePromise;
  325. try {
  326. nativePromise = Promise;
  327. } catch (_) {
  328. nativePromise = function() {
  329. };
  330. }
  331. function clone2(parent, circular, depth, prototype, includeNonEnumerable) {
  332. if (typeof circular === "object") {
  333. depth = circular.depth;
  334. prototype = circular.prototype;
  335. includeNonEnumerable = circular.includeNonEnumerable;
  336. circular = circular.circular;
  337. }
  338. var allParents = [];
  339. var allChildren = [];
  340. var useBuffer = typeof Buffer != "undefined";
  341. if (typeof circular == "undefined")
  342. circular = true;
  343. if (typeof depth == "undefined")
  344. depth = Infinity;
  345. function _clone(parent2, depth2) {
  346. if (parent2 === null)
  347. return null;
  348. if (depth2 === 0)
  349. return parent2;
  350. var child;
  351. var proto;
  352. if (typeof parent2 != "object") {
  353. return parent2;
  354. }
  355. if (_instanceof(parent2, nativeMap)) {
  356. child = new nativeMap();
  357. } else if (_instanceof(parent2, nativeSet)) {
  358. child = new nativeSet();
  359. } else if (_instanceof(parent2, nativePromise)) {
  360. child = new nativePromise(function(resolve, reject) {
  361. parent2.then(function(value) {
  362. resolve(_clone(value, depth2 - 1));
  363. }, function(err) {
  364. reject(_clone(err, depth2 - 1));
  365. });
  366. });
  367. } else if (clone2.__isArray(parent2)) {
  368. child = [];
  369. } else if (clone2.__isRegExp(parent2)) {
  370. child = new RegExp(parent2.source, __getRegExpFlags(parent2));
  371. if (parent2.lastIndex)
  372. child.lastIndex = parent2.lastIndex;
  373. } else if (clone2.__isDate(parent2)) {
  374. child = new Date(parent2.getTime());
  375. } else if (useBuffer && Buffer.isBuffer(parent2)) {
  376. if (Buffer.from) {
  377. child = Buffer.from(parent2);
  378. } else {
  379. child = new Buffer(parent2.length);
  380. parent2.copy(child);
  381. }
  382. return child;
  383. } else if (_instanceof(parent2, Error)) {
  384. child = Object.create(parent2);
  385. } else {
  386. if (typeof prototype == "undefined") {
  387. proto = Object.getPrototypeOf(parent2);
  388. child = Object.create(proto);
  389. } else {
  390. child = Object.create(prototype);
  391. proto = prototype;
  392. }
  393. }
  394. if (circular) {
  395. var index = allParents.indexOf(parent2);
  396. if (index != -1) {
  397. return allChildren[index];
  398. }
  399. allParents.push(parent2);
  400. allChildren.push(child);
  401. }
  402. if (_instanceof(parent2, nativeMap)) {
  403. parent2.forEach(function(value, key) {
  404. var keyChild = _clone(key, depth2 - 1);
  405. var valueChild = _clone(value, depth2 - 1);
  406. child.set(keyChild, valueChild);
  407. });
  408. }
  409. if (_instanceof(parent2, nativeSet)) {
  410. parent2.forEach(function(value) {
  411. var entryChild = _clone(value, depth2 - 1);
  412. child.add(entryChild);
  413. });
  414. }
  415. for (var i in parent2) {
  416. var attrs = Object.getOwnPropertyDescriptor(parent2, i);
  417. if (attrs) {
  418. child[i] = _clone(parent2[i], depth2 - 1);
  419. }
  420. try {
  421. var objProperty = Object.getOwnPropertyDescriptor(parent2, i);
  422. if (objProperty.set === "undefined") {
  423. continue;
  424. }
  425. child[i] = _clone(parent2[i], depth2 - 1);
  426. } catch (e) {
  427. if (e instanceof TypeError) {
  428. continue;
  429. } else if (e instanceof ReferenceError) {
  430. continue;
  431. }
  432. }
  433. }
  434. if (Object.getOwnPropertySymbols) {
  435. var symbols = Object.getOwnPropertySymbols(parent2);
  436. for (var i = 0; i < symbols.length; i++) {
  437. var symbol = symbols[i];
  438. var descriptor = Object.getOwnPropertyDescriptor(parent2, symbol);
  439. if (descriptor && !descriptor.enumerable && !includeNonEnumerable) {
  440. continue;
  441. }
  442. child[symbol] = _clone(parent2[symbol], depth2 - 1);
  443. Object.defineProperty(child, symbol, descriptor);
  444. }
  445. }
  446. if (includeNonEnumerable) {
  447. var allPropertyNames = Object.getOwnPropertyNames(parent2);
  448. for (var i = 0; i < allPropertyNames.length; i++) {
  449. var propertyName = allPropertyNames[i];
  450. var descriptor = Object.getOwnPropertyDescriptor(parent2, propertyName);
  451. if (descriptor && descriptor.enumerable) {
  452. continue;
  453. }
  454. child[propertyName] = _clone(parent2[propertyName], depth2 - 1);
  455. Object.defineProperty(child, propertyName, descriptor);
  456. }
  457. }
  458. return child;
  459. }
  460. return _clone(parent, depth);
  461. }
  462. clone2.clonePrototype = function clonePrototype(parent) {
  463. if (parent === null)
  464. return null;
  465. var c = function() {
  466. };
  467. c.prototype = parent;
  468. return new c();
  469. };
  470. function __objToStr(o) {
  471. return Object.prototype.toString.call(o);
  472. }
  473. clone2.__objToStr = __objToStr;
  474. function __isDate(o) {
  475. return typeof o === "object" && __objToStr(o) === "[object Date]";
  476. }
  477. clone2.__isDate = __isDate;
  478. function __isArray(o) {
  479. return typeof o === "object" && __objToStr(o) === "[object Array]";
  480. }
  481. clone2.__isArray = __isArray;
  482. function __isRegExp(o) {
  483. return typeof o === "object" && __objToStr(o) === "[object RegExp]";
  484. }
  485. clone2.__isRegExp = __isRegExp;
  486. function __getRegExpFlags(re) {
  487. var flags = "";
  488. if (re.global)
  489. flags += "g";
  490. if (re.ignoreCase)
  491. flags += "i";
  492. if (re.multiline)
  493. flags += "m";
  494. return flags;
  495. }
  496. clone2.__getRegExpFlags = __getRegExpFlags;
  497. return clone2;
  498. }();
  499. var clone_default = clone;
  500. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/core/Request.js
  501. var Request = class {
  502. /**
  503. * @param {Object} arg - 全局配置
  504. * @param {String} arg.baseURL - 全局根路径
  505. * @param {Object} arg.header - 全局header
  506. * @param {String} arg.method = [GET|POST|PUT|DELETE|CONNECT|HEAD|OPTIONS|TRACE] - 全局默认请求方式
  507. * @param {String} arg.dataType = [json] - 全局默认的dataType
  508. * @param {String} arg.responseType = [text|arraybuffer] - 全局默认的responseType。支付宝小程序不支持
  509. * @param {Object} arg.custom - 全局默认的自定义参数
  510. * @param {Number} arg.timeout - 全局默认的超时时间,单位 ms。默认60000。H5(HBuilderX 2.9.9+)、APP(HBuilderX 2.9.9+)、微信小程序(2.10.0)、支付宝小程序
  511. * @param {Boolean} arg.sslVerify - 全局默认的是否验证 ssl 证书。默认true.仅App安卓端支持(HBuilderX 2.3.3+)
  512. * @param {Boolean} arg.withCredentials - 全局默认的跨域请求时是否携带凭证(cookies)。默认false。仅H5支持(HBuilderX 2.6.15+)
  513. * @param {Boolean} arg.firstIpv4 - 全DNS解析时优先使用ipv4。默认false。仅 App-Android 支持 (HBuilderX 2.8.0+)
  514. * @param {Function(statusCode):Boolean} arg.validateStatus - 全局默认的自定义验证器。默认statusCode >= 200 && statusCode < 300
  515. */
  516. constructor(arg = {}) {
  517. if (!isPlainObject(arg)) {
  518. arg = {};
  519. console.warn("设置全局参数必须接收一个Object");
  520. }
  521. this.config = clone_default({ ...defaults_default, ...arg });
  522. this.interceptors = {
  523. request: new InterceptorManager_default(),
  524. response: new InterceptorManager_default()
  525. };
  526. }
  527. /**
  528. * @Function
  529. * @param {Request~setConfigCallback} f - 设置全局默认配置
  530. */
  531. setConfig(f) {
  532. this.config = f(this.config);
  533. }
  534. middleware(config) {
  535. config = mergeConfig_default(this.config, config);
  536. let chain = [dispatchRequest_default, void 0];
  537. let promise = Promise.resolve(config);
  538. this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
  539. chain.unshift(interceptor.fulfilled, interceptor.rejected);
  540. });
  541. this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
  542. chain.push(interceptor.fulfilled, interceptor.rejected);
  543. });
  544. while (chain.length) {
  545. promise = promise.then(chain.shift(), chain.shift());
  546. }
  547. return promise;
  548. }
  549. /**
  550. * @Function
  551. * @param {Object} config - 请求配置项
  552. * @prop {String} options.url - 请求路径
  553. * @prop {Object} options.data - 请求参数
  554. * @prop {Object} [options.responseType = config.responseType] [text|arraybuffer] - 响应的数据类型
  555. * @prop {Object} [options.dataType = config.dataType] - 如果设为 json,会尝试对返回的数据做一次 JSON.parse
  556. * @prop {Object} [options.header = config.header] - 请求header
  557. * @prop {Object} [options.method = config.method] - 请求方法
  558. * @returns {Promise<unknown>}
  559. */
  560. request(config = {}) {
  561. return this.middleware(config);
  562. }
  563. get(url, options = {}) {
  564. return this.middleware({
  565. url,
  566. method: "GET",
  567. ...options
  568. });
  569. }
  570. post(url, data, options = {}) {
  571. return this.middleware({
  572. url,
  573. data,
  574. method: "POST",
  575. ...options
  576. });
  577. }
  578. put(url, data, options = {}) {
  579. return this.middleware({
  580. url,
  581. data,
  582. method: "PUT",
  583. ...options
  584. });
  585. }
  586. delete(url, data, options = {}) {
  587. return this.middleware({
  588. url,
  589. data,
  590. method: "DELETE",
  591. ...options
  592. });
  593. }
  594. connect(url, data, options = {}) {
  595. return this.middleware({
  596. url,
  597. data,
  598. method: "CONNECT",
  599. ...options
  600. });
  601. }
  602. head(url, data, options = {}) {
  603. return this.middleware({
  604. url,
  605. data,
  606. method: "HEAD",
  607. ...options
  608. });
  609. }
  610. options(url, data, options = {}) {
  611. return this.middleware({
  612. url,
  613. data,
  614. method: "OPTIONS",
  615. ...options
  616. });
  617. }
  618. trace(url, data, options = {}) {
  619. return this.middleware({
  620. url,
  621. data,
  622. method: "TRACE",
  623. ...options
  624. });
  625. }
  626. upload(url, config = {}) {
  627. config.url = url;
  628. config.method = "UPLOAD";
  629. return this.middleware(config);
  630. }
  631. download(url, config = {}) {
  632. config.url = url;
  633. config.method = "DOWNLOAD";
  634. return this.middleware(config);
  635. }
  636. get version() {
  637. return "3.1.0";
  638. }
  639. };
  640. // ../../../../../../Users/xuruhua/Desktop/zx/new-zx-front-app/node_modules/luch-request/src/lib/luch-request.js
  641. var luch_request_default = Request;
  642. export {
  643. luch_request_default as default
  644. };
  645. //# sourceMappingURL=luch-request.js.map