
vue 请求
刘双武
前端小菜鸡分享技术一起学习
展开
-
vue学习笔记---接口数据传递
1.向后发起请求的插件vue-resource 第三方包axios 向vue对象中挂载一个this.$httpthis.$http.get(‘url’,[‘parmars’]).then(suncessCallback,errorCallback);this.$http.post(‘url’,{[body]},{[‘headers’]}).then(suncessCallback,e...原创 2019-03-23 17:40:38 · 3403 阅读 · 0 评论 -
post从header赚body传值
var fd = new FormData()fd.append(‘file’, files[0])let config = {headers: {‘Content-Type’: ‘multipart/form-data’}}axios.post(that.uploadUrl, fd,config).then( res => {console.log(res)}).catc...原创 2019-06-19 15:02:47 · 528 阅读 · 0 评论