vue-cli3 axios

  1. 添加axios: vue add  axios
  2. main.js中引入
    import axios from "axios";
    Vue.prototype.$axios = axios;
  3. get请求方式vue-cli3 axios_第1张图片
  4. post请求方式
    axios.post('/api/news/matches', {
          page: 1,
          limit: 10,
      })
      .then((response) => {
        console.log(response);
      })
      .catch((error) =>{
        console.log(error);
      });
    

    5.跨域的问题在vue.config.js中配置vue-cli3 axios_第2张图片

你可能感兴趣的:(vue学习)