1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- var app = getApp();
- var requestnum = 0;
- const addnum = function(){
- if (requestnum==0){
- wx.showLoading({
- title:"加载中...",
- // mask:true
- })
- }
- requestnum++;
- }
- const reducenum = function(){
- requestnum--;
- if (requestnum==0){
- wx.hideLoading();
- }
- }
- export const get=(url,data,callback,failback)=>{
- addnum();
- wx.request({
- url: app.globalData.serverpath+url,
- method: "GET",
- header: {
- "Content-Type": "json"
- },
- data:data,
- success: function (res){
- console.debug(res);
- callback && callback(res);
- },
- fail: function (error){
- failback && failback(error);
- },
- complete: function () {
- reducenum();
- }
- })
- }
- export const post=(url,data,header,callback,failback)=>{
- addnum();
- wx.request({
- url: app.globalData.serverpath+url,
- method: "POST",
- header: Object.assign({
- "Content-Type": "json"
- },header),
- data:data,
- success: function (res){
- console.debug(res);
- callback && callback(res);
- },
- fail: function (error){
- failback && failback(error);
- },
- complete: function () {
- reducenum();
- }
- })
- }
|