axios/ajax
旧爱学长
微信公众号:旧爱学长
展开
-
Get和Post请求区别
1、Get和Post请求区别和使用场景2、post适用于表单提交,图片文件上传。3、post相对于get要安全点点,因为post的是在地址栏不显示的,而且没有大小和长度的限制原创 2020-06-07 20:38:06 · 212 阅读 · 0 评论 -
原生ajax与jquery-ajax
11原创 2020-06-05 16:30:34 · 192 阅读 · 0 评论 -
vue-cli3-axios
1、安装依赖npm安装/cdn安装npm install axios --save<script src="https://unpkg.com/axios/dist/axios.min.js"></script>2.在main.js下引用axios import axios from 'axios'3、get/post请求(脚手架中使用axios)this.$http.get("url").then((res)=>{}) this.$http.post("u原创 2020-06-04 19:15:29 · 513 阅读 · 0 评论