Vue---请求数据--resource

瘦欲@ 提交于 2019-11-30 18:01:05

mian.js

//使用2.1导入vue-resource
import VueResource from 'vue-resource'
//2.2安装vue-resource
Vue.use(VueResource)
//2.3设置请求的根路径
Vue.http.options.root = 'http://vue.syudent.io';
------------------------------
页面引用
  // vur-resource请求
    this.$http.get("地址").then(res => {
      console.log(res.body);
    if (res.body.satus === 0) {
      this.lunbotu = res.body.message;
    }else{
      //失败
      Toast("加载轮播图失败...");
    }
    })
 
 
 
-----------------------
或者
   async getlunbotu() {
      // 获取轮播图的方法
      const { data } = await this.$http.get("/api/getlunbo");
      if (data.status === 0) this.lunbotu = data.message;
    }
  },
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!