axios基本使用

1 篇文章 0 订阅

HTTP请求交互的基本过程

在这里插入图片描述

不同的请求类型的作用

在这里插入图片描述

API的分类

在这里插入图片描述
非REST API:
基本上get做查询,post增删改都可以做。

Json-server搭建rest接口

下载

npm install -g json-server

创建db.json文件并添加JSON数据。

{
    "posts": [
      { "id": 1, "title": "json-server", "author": "typicode" },
      { "id": 2, "title": "json-server2", "author": "typicode2" }
    ],
    "comments": [
      { "id": 1, "body": "some comment", "postId": 1 }
    ],
    "profile": { "name": "typicode" }
  }

访问posts/1 parmas 直接返回一个对象
parmas 直接定位到某一个对象
在这里插入图片描述
访问posts?id=1 query 返回的是一个数组
query内部做的是过滤,对所有的数据进行过滤,产生一个新数组。

在这里插入图片描述

axios请求rest接口

get请求

<body>
   <button onclick="aget()">get</button>
   <button onclick="apost()">post</button>
   <button onclick="aput()">put</button>
   <button onclick="adelete()">delete</button>
   <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script>
    function aget(){
       
        axios.get('http://localhost:3000/posts')
            .then(res=>{
                console.log(res.data)
            })
    }
</script>

执行结果:
在这里插入图片描述
get请求还可以这么写:

axios.get('http://localhost:3000/posts',{
            params:{
                id:2
            }
        }).then(res=>{
            console.log(res.data)
        })

执行结果:
在这里插入图片描述
POST请求:

 function apost(){
        axios.post('http://localhost:3000/posts',{
             "id": 3, 
             "title": "333333", 
             "author": "333333333" 
        }).then(res=>{
            console.log(res.data)
        })
    }

执行结果:
在这里插入图片描述

执行多个并发请求操作:

 axios.all([aget(),apost()])
        .then(axios.spread(function (ag,ap) {
        }))

假如在function处输出ag或者ap,会显示undefind 暂时不太清楚。
执行结果:

在这里插入图片描述
put请求:

 axios.put('http://localhost:3000/posts/1',{
              "id": "30",
             "title": "put修改了",
             "author": "修改了"
             }).then(res=>{
                 console.log(res.data)
             })

执行结果:可以看出,其他字段可以正常修改,只有id没有被修改。原因暂不清楚

在这里插入图片描述

delete请求:

 axios.delete('http://localhost:3000/posts/1')
        .then(res=>{
            aget()
        })

执行结果: id=1的数据已经被删除

在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值