vue-resource使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-resource使用相关的知识,希望对你有一定的参考价值。

import VueResource from ‘vue-resouce‘

Vue.use(VueResource);

在组件内部调用:

export default {

mounted(){

  //get请求

  this.$http.get(url).then(function(success){

  // 这里的this 也属于该组件? 未使用箭头函数直接使用this,同样指向组件。。

  }, function(err){});

       // post请求
  this.$http.post(url, {/** 一些请求数据 */}).then(function(success){}, function(err){});

}

}

 

以上是关于vue-resource使用的主要内容,如果未能解决你的问题,请参考以下文章

vue-resource的使用

vue http请求 vue-resource使用方法

vue-resource 拦截器使用

使用 vue-resource 更新数据

开始使用 vue-resource

vue-resource插件使用