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
| var host = "http://www.baidu.com";
var showLoading = null;
module.exports = { HOST: host, API_ROOT: host + '/api/', API_VERSION: '1.0.0', get(options) { options.method = 'GET'; return this.request(options); }, post(options) { options.method = 'POST'; return this.request(options); }, delete(options) { options.method = 'DELETE'; return this.request(options); }, put(options) { options.method = 'PUT'; return this.request(options); }, request(options) { var that = this var apiRoot = this.API_ROOT;
var token = ''; try { token = wx.getStorageSync('token') } catch (e) {}
var requireLogin = true; if (typeof options.login == 'undefined' || options.login == true) { requireLogin = true; } else { requireLogin = false; }
if (typeof options.loading != 'undefined' && options.loading == true) { clearTimeout(showLoading) showLoading = setTimeout(function() { wx.showToast({ title: "加载中", icon: "loading", duration: 1e4 }); }, 500) }
return new Promise((resolve, reject) => { wx.request({ url: apiRoot + options.url, data: options.data, method: options.method ? options.method : 'POST', header: { 'Cache-Control': 'no-cache', 'Content-Type': 'application/x-www-form-urlencoded', 'XX-Token': token, 'XX-Device-Type': 'wxapp', 'XX-Api-Version': that.API_VERSION }, success: (res) => { clearTimeout(showLoading) wx.hideToast() if (res.data.code == 10001 && requireLogin) { let currentPages = getCurrentPages(); let currentRoute = currentPages.pop()['__route__']; if (currentRoute != 'pages/login/login') { wx.navigateTo({ url: '/pages/login/login' }); } } else { resolve(res) } }, fail: (error) => { clearTimeout(showLoading) wx.hideToast() reject(error) } }) }) } }
|