网络模块封装-axios

axios

功能特点:

  • 在浏览器中发送XMLHttpRequests 请求
  • 在node.js中发送http请求
  • 支持Promise API
  • 拦截请求和响应
  • 转换请求和响应数据
  • 等等

axios框架的基本使用

npm install axios --save

import axios from 'axios'
// config对象类型
// axios(config)最基本的使用
// 本身可以返回Promise数据
// 1.基本使用
axios({
   
  // 服务器
  url:'http://123.207.32.32:8000/home/multidata',
  //get请d
  method:'get'
}).then(res => {
   
  console.log(res);
})

axios发送并发请求

格式:数组

axios.all([axios(), axios()]).then(result => {
   

})
axios.all([axios({
   
  url: '/home/multidata'
}), axios({
   
  url:'http://123.207.32.32:8000/home/data',
    // 专门针对get请求的参数拼接 
  params: {
   
    type: 'sell',
    page: 4
  }
})]).then(results => {
   
    console.log(results);
    console.log(results[0]);
    console
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值