axios安装与基本方法

安装:

1.npm安装:

npm install axios

2.在主入口文件main.js中引用:

import axios from 'axios'

Vue.use(axios);

3.在组件文件中的methods里使用:

getNewsList(){
      this.axios.get('api/getNewsList').then((response)=>{
        this.newsList=response.data.data;
      }).catch((response)=>{
        console.log(response);
      })
}

方法:1.get请求:直接从后台获取数据,参数写在地址(url)里,第一个参数是url(API的一个地址,由后端提供);

2.post请求:一般在填写表单并提交时,要将输入的数据写在数据库里,参数一般放在对象中;

上一篇:一句代码把彩色的页面改为黑白色调


下一篇:使用python精准断言接口response