本地接口运行
onload(){
this.getSwipers()
},
函数可以改变 this指向
await
二次封装
//暴露一个方法
const BASE_URL='http://localhost:8082'
export const myRequest=()=>{
return new Promise((resolve,reject)=>{
uni.request({
url:BASE_URL+option.url,
method:options.method || 'get',
data:options.data || {},
success:()=>{
//请求失败showToast
//请求成功
resolve(res)
}
fail:(err)=>{
}
})
})
}
//调用
myRequest({
url:'/api/getlunbo',
method:'POST',
data:{
}
})