安装
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)
})