1. 在HTML中 

GET 提交 

SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。

POST提交(比GET提交多了个 enctype="multipart/form-data" 

1  <form action="../api/01.fileupload.php" method="POST" enctype="multipart/form-data">
2  照片:<input type="file" name="name">
3  <input type="submit" value="上传">
4 </form>

2.在Vue-router中

GET获取  (url地址,{传到后端的数据}可选 )

POST提交 (post 发送数据到后端,需要第三个参数 {emulateJSON:true})

1 this.$http.post('http://6564646/'+this.$route.params.id,{comment:this.msg.trim()},{emulateJSON:true})

 *****注意,为了图方便,可以在main.js全局配置

1  Vue.http.options.emulateHTTP = true;

 

扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄