首页 > 移动平台 > 详细

axios学习一如何使用axios

时间:2020-05-07 23:22:30      阅读:65      评论:0      收藏:0      [点我收藏+]

aixos基础用法

  <div>
        <button onclick="testGet()">GET请求</button>
        <button onclick="testPost()">POST请求</button>
        <button onclick="testPut()">PUT请求</button>
        <button onclick="testDelete()">DELETE请求</button>
    </div>
    <script src="https://cdn.bootcdn.net/ajax/libs/axios/0.19.2/axios.js"></script>
    <script>
        function testGet() { //GET请求
            axios.get(http://localhost:3000/posts).then(
                response => {
                    console.log(/posts, response.data);

                })
        }

        function testPost() { //POST请求
            axios.post(http://localhost:3000/posts, {
                "id": 5,
                "title": "balck-api",
                "author": "CCCC"
            }).then(
                response => {
                    console.log(/posts, response.data);

                })
        }

        function testPut() { //PUT请求
            axios.put(http://localhost:3000/posts/4, {
                "id": 4,
                "title": "happy-api",
                "author": "CCCC"
            }).then(
                response => {
                    console.log(/posts, response.data);

                })
        }

        function testDelete() { //DELETE请求
            axios.put(http://localhost:3000/posts/2).then(
                response => {
                    console.log(/posts, response.data);

                })
        }
    </script>

POST请求

技术分享图片

 

 Delete请求

技术分享图片

 

axios学习一如何使用axios

原文:https://www.cnblogs.com/hqt0731/p/12846536.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!