欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序class封装http代码实例

程序员文章站 2023-12-01 16:49:52
这篇文章主要介绍了微信小程序class封装http,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 代码如下 conf...

这篇文章主要介绍了微信小程序class封装http,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

代码如下

config.js

var config = {
  base_api_url:"https://douban.uieee.com/v2/"
}
export {config}

utils/http.js

import {config} from "../config";
class http{
 request(params) {
  if (!params.method) {
   params.method = "get"
  }
  wx.request({
   url: config.base_api_url + params.url,
   data: params.data,
   method:params.method,
   header: {
    'content-type': 'json'
   },
   success: function (res) {
    let statuscode = res.statuscode.tostring();
    if(statuscode.startswith("2")){
     params.success(res.data);
    }else{
     wx.showtoast({
      title:"网络错误",
      icon:"none"
     })
    }
   },
   fail: function() {
    wx.showtoast({
     title:"错误",
     icon:"none"
    })
   }
  })
 }
}
export{
 http
}


models/movie.js

import { http } from "../utils/http";
const movie = "movie/";
class moviemodel extends http {
  gettop250(callback) {
    this.request({
      url: movie + "top250",
      success: res => {
        callback(res);
      }
    })
  }
  getcomingsoon(callback) {
    this.request({
      url: movie + "coming_soon",
      success: res => {
        callback(res)
      }
    })
  }
}
export {
  moviemodel
}

index.js 引用

import {moviemodel} from "../../models/movie"
var movie = new moviemodel();

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。