vue axios

1.安装axios

npm i --save axios

2.main.js 引入axios

import axios from 'axios'
Vue.prototype.axios = axios

3.在项目methods/使用

Get

this.axios({
          method:'get',
          url:'test.php',
          params:{state:"join"},
        }).then((response) =>{
           console.log(response['data'])//成功数据
        }).catch((error) =>{
          console.log(error)//错误数据
          alert(error)
        })
    },
    

Post

      this.axios({
        method:'post',
        url:'test.php',
        data:data,
      }).then((response) =>{
        console.log(response);//成功数据

      }).catch((error) =>{
        console.log(error)//错误数据
      })
    },

第一次用axios坑

axios 默认post 是用request payload来传输的

let data = new FormData()
data.append('data1','data1')
this.axios({
        method:'post',
        url:'lottery.php',
        data:data,
      }).then((response) =>{
        console.log(response);//成功数据

      }).catch((error) =>{
        console.log(error)//错误数据
      })
    },


    原文作者:graaaaaa
    原文地址: https://segmentfault.com/a/1190000018961008
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞