最近在学习VUE,学到发送请求这个阶段了 推荐上B站 上面好多大神的教学视频
由于 vue更新到2.0之后vue-resource不再更新,强烈推荐使用axios发送请求,因此入手了axios
使用非常简单,直接查看官方文档就行:https://github.com/axios/axios
这个是中文文档:https://www.kancloud.cn/yunye/axios/234845
html页面设置
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!--1.导入Vue的包-->
<script src="../lib/vue.js"></script>
<!-- 注意,vue-resource依赖于Vue,所以先后顺序要注意 -->
<!-- <script src&