钉钉小程序request请求固定的一个框架

requestBanner: function() {
    var that=this;
    dd.showLoading({
      content: '数据加载中...'
    });
    dd.httpRequest({
      url: app.data.globalData.url + "public/index.php/api/index/banner",
      method: 'Get',
      success: function(res) {
        dd.hideLoading();
        if(res.data.code==200){
          
        }else {
          dd.showToast({
          content: res.data.msg,
          type: 'fail',
        });
        }
      },
      fail: function() {
        dd.hideLoading();
        dd.showToast({
          content: '数据请求失败',
          type: 'fail',
        });
      }
    })
  }

你可能感兴趣的:(前端)