• vue.js中get和post请求使用 axios


     
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <!--<script src="./vue.js"></script>-->
       
    </head>
    <body>
        <input type="button" value="get请求" class="get">
        <input type="button" value="post请求" class="post">
        <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
        <script>
            document.querySelector(".get").onclick=function(){
                    axios.get("https://autumnfish.cn/api/joke/list?num=3").then(function(response){
                        console.log(response)
                    },
                    function(err){
                        console.log("err")
                    }
                )
            }
            document.querySelector(".post").onclick=function(){
                axios.post("https://autumnfish.cn/api/user/reg",{"username":"jim"}).then(function(response){
                    console.log(response)
                    let homeObj = JSON.stringify(response);
                    console.log("post请求结果=="+homeObj);
                    console.log(response.data+response.status)
                })
            }
            


        </script>
        
    </body>
    </html>
  • 相关阅读:
    final关键字的用法
    多态的理解
    5.13会话技术Cookie---Session
    5.13Junit单元测试-反射-注解
    5.13redis的相关基础
    5月13号
    5.13redis图形化工具---idea中配置redis密码
    5.13谢谢原文博主
    5.13微信登录维护态与获取用户信息思想
    5.12redis
  • 原文地址:https://www.cnblogs.com/xianz666/p/14831418.html
Copyright © 2020-2023  润新知