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

封装小程序接口

程序员文章站 2022-06-13 21:03:46
...
const URL =  请求地址;
export const http = (option) => {
	return new promise ( (resolve, reject) => {
		wx.request({
		  url: URL + option.url, //仅为示例,并非真实的接口地址
		  data: option.data || {}
		  method: option.method || GET
		  header: {
		    'content-type': 'application/json' // 默认值
		  },
		  success (res) {
		 	resolve(res) 
		    console.log(res.data)
		  },
		  fail (err) {
				reject(err);
			}
		})
	})
}

http({
url: '接口',
method : '请求类型'
data: {data:'请求参数'}
})


http ({url:'****'})