36_axios请求

2018-02-21  本文已影响0人  CHENPEIHUANG
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script src="axios.min.js"></script>
        <script>
            //第一种
//          axios({
//              url:"01-http.php?username=123400&password=12aaa",
//              method:'get'
//          }).then(function(res){
//              console.log(res)
//          });
            //第二种
//          axios.get('01-http.php?username=123aaa&password=12993').then(function(res){
//              console.log(res)
//          });
            //第三种
//          axios({
//              url:"01-http.php",
//              data:"username=aaabbb&password=12999",
//              method:'post',
//              
//          }).then(function(res){
//              console.log(res)
//          })

            //第四种
            axios.post("01-http.php","username=bbbaaa&password=2999")
                .then(function(res){
                    console.log(res)
                })

        </script>
    </body>
</html>

上一篇下一篇

猜你喜欢

热点阅读