zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    [转]Convolution Neural Network (CNN) 原理与实现
    [转]深度学习CNN研究反向
    [转]一张图看懂:Google AlphaGo的原理、弱点
    [转]前馈型神经网络与反馈型神经网络的区别
    [转]认知机和神经认知机
    [转]技术向:一文读懂卷积神经网络CNN
    PHP 日期格式化 参数参考
    PHP MAIL DEMO(程序代码直接发送邮件)
    PHP上传文件DEMO
    PDO事务管理DEMO
  • 原文地址:https://www.cnblogs.com/xianz666/p/14831418.html
Copyright © 2011-2022 走看看