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)
})
posted @ 2021-07-15 16:58  thomas_blog  阅读(81)  评论(0编辑  收藏  举报