vue resource

注册

import VueResource from 'vue-resource'

Vue.use(VueResource)

  

使用

this.$http

  

两个例子:

  created () {
    this.$http.post('getList', {userId: 123})
      .then((response) => {
        console.log(response)
      }, (err) => { console.log(err) })
    // this.$http.get('getList')
    //   .then((response) => {
    //     console.log(response)
    //   }, (err) => { console.log(err) })
  },

  

原文地址:https://www.cnblogs.com/tabCtrlShift/p/9164324.html