美文网首页
vue 使用 axios

vue 使用 axios

作者: 前端阿帆 | 来源:发表于2018-08-02 10:05 被阅读0次
    1. 命令行里安装 npm install --save vue-axios
    1. man.js 里
        import axios from 'axios'
        
        import VueAxios from 'vue-axios'
        
        Vue.use(VueAxios,axios);
    
    1. 在组件中直接就可以使用
    getNewsList(){
    
          this.axios.get('api/getNewsList')
    
                .then((response)=>
    
                        {
    
                            this.newsList=response.data.data;    
    
                         })
    
                        .catch((response)=>{console.log(response);      }
    
          )},
    
    
    1. 更多方法点击链接
        https://blog.csdn.net/connie_0217/article/details/78703112
    
    

    相关文章

      网友评论

          本文标题:vue 使用 axios

          本文链接:https://www.haomeiwen.com/subject/urcjvftx.html