欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue中Axios请求数据教程

程序员文章站 2023-08-24 20:01:25
vue中axios请求数据 vue中axios请求数据 进入文件夹根目录运行命令npm install axios --save 在需要用的页面通过import axios(自定义名字) from...

vue中axios请求数据

vue中axios请求数据 进入文件夹根目录运行命令npm install axios --save

在需要用的页面通过import axios(自定义名字) from 'axios'进行引入

使用

var api="地址";                                                                                                                                                                                 axios.get(api).then(function (response) {
             console.log(response);
         }).catch(function (error) {
               console.log(error);
         }).then(function () {
               console.log("执行");
         });

//也可以像ajax那样,这样子写
 axios({
         method:'get',
         url:api,
         }).then(function(response) {
             console.log(response);
         });