【Vue】axios入门(一)

这个博客展示了如何利用json-server创建一个简单的本地API,并结合axios库进行GET、POST、PUT和DELETE请求的实战操作。通过点击按钮触发不同类型的HTTP请求,直观地在控制台打印响应数据。
摘要由CSDN通过智能技术生成

视频
在这里插入图片描述

json-server

在这里插入图片描述

npm install -g json-server

json-server官网
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

json-server --watch test.json

在这里插入图片描述

axios
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="https://cdn.staticfile.org/axios/0.18.0/axios.min.js"></script>
    <style>
      .show{
        padding-left: 30px;
        padding-top: 30px;
        position: absolute;
        top:40px;
        left:50px;
        width: 500px;
        height: 300px;
        background: #f1f1f1;
      }

    </style>
</head>
<body>
  <div class="show">
    <button onclick="testGet()">GET请求</button>
    <button onclick="testPost()">POST请求</button>
    <button onclick="testPut()">PUT请求</button>
    <button onclick="testDelete()">DELETE请求</button>
  </div>

</body>
<script>
  function testGet() {
      axios.get('http://localhost:3000/posts')
        .then(response =>{
          console.log('/posts',response.data)
        })
  }
</script>
</html>

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
完整代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="https://cdn.staticfile.org/axios/0.18.0/axios.min.js"></script>
    <style>
      .show{
        padding-left: 30px;
        padding-top: 30px;
        position: absolute;
        top:40px;
        left:50px;
        width: 500px;
        height: 300px;
        background: #f1f1f1;
      }

    </style>
</head>
<body>
  <div class="show">
    <button onclick="testGet()">GET请求</button>
    <button onclick="testPost()">POST请求</button>
    <button onclick="testPut()">PUT请求</button>
    <button onclick="testDelete()">DELETE请求</button>
  </div>

</body>
<script>
  function testGet() {
      axios.get('http://localhost:3000/posts')
        .then(response =>{
          console.log('/posts get',response.data)
        })
  }
  function testPost() {
    axios.post('http://localhost:3000/posts',{ "title": "明天你好", "author": "hangover" })
      .then(response =>{
        console.log('/posts post',response.data)
      })
  }
  function testPut() {
    axios.put('http://localhost:3000/posts/1',{
      "title": "明天你好",
      "author": "hangover",
    },)
      .then(response =>{
        console.log('/posts put',response.data)
      })
  }
  function testDelete() {
    axios.delete('http://localhost:3000/posts/3')
      .then(response =>{
        console.log('/posts delete',response.data)
      })
  }
</script>
</html>

在这里插入图片描述
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值