UNPKG

jshttp

Version:

基于 Axios 的 HTTP 请求库,内置了一些常用功能,支持在任何 Javascript 环境下运行

23 lines (18 loc) 459 B
'use strict' function isWxMiniprogram() { return typeof wx === 'object' && typeof wx.request === 'function' } /** * 获取默认请求适配器 * * 说明: * 1. 仅处理附加的适配器 * 2. `xhr` 和 `nodejs` 的适配器不处理,由 `axios` 接管 */ module.exports = function getDefaultAdapter() { let adapter if (isWxMiniprogram()) { adapter = require('../adapters/wx-miniprogram') } return adapter }