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>
  • 相关阅读:
    C++输入cout与输出cin
    golang学习笔记
    vscode环境配置
    golang 微框架 gin
    git go使用socket5代理
    go包管理工具glide
    collectd的python插件(redis)
    zookeeper & kafka 集群
    redis复制集(sentinel)
    python加解密
  • 原文地址:https://www.cnblogs.com/xianz666/p/14831418.html
Copyright © 2011-2022 走看看