work hard work smart

专注于Java后端开发。 不断总结,举一反三。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Vue 中Axios 使用

Posted on 2019-05-31 14:29  work hard work smart  阅读(241)  评论(0编辑  收藏  举报

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)
        })
    }