| | |
| | | * 请求配置 |
| | | * @private |
| | | */ |
| | | _defaultConfig = { |
| | | url: '', |
| | | header: { |
| | | 'X-Requested-With': 'XMLHttpRequest', |
| | | 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8', |
| | | 'Ax-Rq-Type': 'separation', |
| | | }, |
| | | credentials: 'same-origin', |
| | | dataType: 'json', |
| | | timeout: 30 * 1000, |
| | | }; |
| | | _defaultConfig = (() => { |
| | | // 跨域模式,一般为 App 内嵌页面 |
| | | if (project.host.cors) { |
| | | return { |
| | | url: '', |
| | | header: { |
| | | 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8', |
| | | }, |
| | | mode: 'cors', |
| | | credentials: 'include', |
| | | dataType: 'json', |
| | | timeout: 30 * 1000, |
| | | }; |
| | | } |
| | | // 正常模式,小程序、普通H5 |
| | | else { |
| | | return { |
| | | url: '', |
| | | header: { |
| | | 'X-Requested-With': 'XMLHttpRequest', |
| | | 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8', |
| | | 'Ax-Rq-Type': 'separation', |
| | | }, |
| | | credentials: 'same-origin', |
| | | dataType: 'json', |
| | | timeout: 30 * 1000, |
| | | }; |
| | | } |
| | | })(); |
| | | |
| | | /** |
| | | * 拼写 URL 地址 |
| | |
| | | } |
| | | |
| | | _saveCookies(cookies) { |
| | | const localCookies = JSON.parse(wx.getStorageSync('cookies') || '{}'); |
| | | const localCookies = JSON.parse(Taro.getStorageSync('cookies') || '{}'); |
| | | cookies.forEach(cookie => { |
| | | const mc = cookie.match(/([a-zA-Z0-9_\-]+)=(.*?);/); |
| | | localCookies[mc[1]] = mc[2]; |
| | | }); |
| | | wx.setStorageSync('cookies', JSON.stringify(localCookies)); |
| | | Taro.setStorageSync('cookies', JSON.stringify(localCookies)); |
| | | } |
| | | |
| | | _getCookies() { |
| | | const localCookies = JSON.parse(wx.getStorageSync('cookies') || '{}'); |
| | | const localCookies = JSON.parse(Taro.getStorageSync('cookies') || '{}'); |
| | | const cookiesArr = []; |
| | | Object.keys(localCookies).forEach(key => { |
| | | cookiesArr.push(key + '=' + localCookies[key]); |
| | |
| | | * @type {String} |
| | | */ |
| | | static host = (() => { |
| | | // 网页 |
| | | // 网页模式 |
| | | if (process.env.TARO_ENV === 'h5') { |
| | | // 开发 |
| | | if (Fetcher.inDevMod) { |
| | | // 网址访问 |
| | | if (window.location.protocol.indexOf('http') >= 0) { |
| | | return window.location.protocol + '//' + window.location.host; |
| | | // 如果网址参数有指定服务器 |
| | | const server = Tools.getUrlParam('server'); |
| | | if (server) { |
| | | // 如果是完整网址,直接使用地址 |
| | | if (server.indexOf('http') >= 0) { |
| | | return server; |
| | | } |
| | | // 文件访问 |
| | | // 如果有匹配服务器,使用指定的服务器地址 |
| | | if (typeof project.host.hosts[server] !== 'undefined') { |
| | | return project.host.hosts[server]; |
| | | } |
| | | // 否则使用本地 |
| | | else { |
| | | return project.host.hosts[project.host.devType]; |
| | | return project.host.hosts.lc; |
| | | } |
| | | } |
| | | // 生产 |
| | | // 网页域名提取服务器地址 |
| | | else if (window.location.protocol.indexOf('http') >= 0) { |
| | | return window.location.protocol + '//' + window.location.host; |
| | | } |
| | | // 既不指定server也不是域名访问,使用设置的服务器地址 |
| | | else { |
| | | // 如果网址参数有指定服务器 |
| | | const sever = Tools.getUrlParam('sever'); |
| | | if (sever) { |
| | | // 如果是完整网址,直接使用地址 |
| | | if (sever.indexOf('http') >= 0) { |
| | | return sever; |
| | | } |
| | | // 如果有匹配服务器,使用指定的服务器地址 |
| | | if (typeof project.host.hosts[sever] !== 'undefined') { |
| | | return project.host.hosts[sever]; |
| | | } |
| | | // 否则使用本地 |
| | | else { |
| | | return project.host.hosts.lc; |
| | | } |
| | | // 开发 |
| | | if (Fetcher.inDevMod) { |
| | | return project.host.hosts[project.host.devType]; |
| | | } |
| | | // 网页域名提取服务器地址 |
| | | else if (window.location.protocol.indexOf('http') >= 0) { |
| | | return window.location.protocol + '//' + window.location.host; |
| | | } |
| | | // 既不指定server也不是域名访问,使用设置的服务器地址 |
| | | // 生产 |
| | | else { |
| | | return project.host.hosts[project.host.serverType]; |
| | | } |
| | | } |
| | | } |
| | | // 小程序 |
| | | // 小程序模式 |
| | | else if (process.env.TARO_ENV === 'weapp') { |
| | | // 开发 |
| | | if (Fetcher.inDevMod) { |