Vue 中Axios 使用

1、安装axios

npm install axios

2、在使用的地方导入

import axios from ‘axios‘

3、再方法中调用

 sendHttp: function () {
      axios.get(‘http://xxx/fileUpload‘)
        .then(response => (this.info = response))
        .catch(function (error) { // 请求失败处理
          console.log(error)
        })
    }

  





Vue 中Axios 使用

上一篇:Ajax登陆案例


下一篇:35个jQuery小技巧