在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
``` module.exports = (method,url,data,header)=>{
return new Promise((resolve,reject)=>{
wx.request({
url:`https://mall.natapp4.cc/lock/app${url}`,
data:data,
method:method,
header:{
'Accept': 'application/json',
'content-type': 'application/json',
'token': header,
},
success:resolve,
fail:reject
})
})
}
//method 你的HTTP 请求方法 // url 你的地址 //data 你的数据 ``` 引入文件 const fetch =require('../../utils/fetch') 使用请求 ``` let data = { mobile:this.data.inputPhone, code:this.data.code, openId:this.data.openId } console.log(data); fetch('post','/wechatlogin',data) .then(res=>{ console.log(res); }) ```
|
请发表评论