微信小程序mpvue使用flyio通过post提交给后台
emer 发布于 2018-8-23 17:55 4007 次阅读
formdata
fly.interceptors.request.use((config,promise)=>{ config.headers["Content-Type"]="application/x-www-form-urlencoded"; return config; }) fly.post("/public/checkWXMobileAndUserName",{username:this.user,mobile:this.phoneNum}).then(function(res){ console.log(res); }).catch(err=>{ console.log(err); })