封装小程序接口
程序员文章站
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:'****'})
上一篇: Spring Cloud 之 Zuul.
下一篇: Hibernate_day01