POST与GET区别

1. 在HTML中 

GET 提交 

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;

 

posted @ 2019-04-15 18:22  一路向北√  阅读(255)  评论(0编辑  收藏  举报

web应用开发&研究 -

业精于勤而荒于嬉。

工作,使我快乐。


Font Awesome | Respond.js | Bootstrap中文网