vue axios HTTP 库

安装

cnpm install axios

使用

import axios from 'axios'
axios({
  method: 'get',
  url: 'http://123.207.32.32:8000/home/multidata'
}).then(res => {
  console.log(res)
})
axios.get(
  'http://123.207.32.32:8000/home/multidata'
).then(res => {
  console.log(res)
})
axios.get(
  'http://123.207.32.32:8000/home/data?type=sell&page=1'
).then(res => {
  console.log(res)
})
axios({
  method: 'get',
  url: 'http://123.207.32.32:8000/home/data',
  params: {
    type: 'sell',
    page: 1
  }
}).then(res => {
  console.log(res)
})
原文地址:https://www.cnblogs.com/zhangxuechao/p/15016392.html