微信小程序mpvue使用flyio通过post提交给后台
Others 2018-08-23 09:55:53 2018-08-23 09:55:53 4022 次浏览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); })
Links: 218