Java教程

Ajax请求的方式

本文主要是介绍Ajax请求的方式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.第三种请求json文件的方法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="js/axios.min.js"></script>
    <script>
        //第四种Ajax请求的方式 fetch
        axios.get("./00 data.json",{
            //Headers:{ 请求头,进行伪装

            //}
            params:{ //params参数
                id:1001
            }
        })
        .then(function(response){
            console.log(response.data);//data请求数据
        })
        .catch(function(error){
            console.log(error);
        })
    </script>
</head>
<body>
    
</body>
</html>

 

 

 

2.第四种请求json文件的方法

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script>
        //plain纯文本
        //第三种Ajax请求的方式 fetch
        fetch("./00 data.json",{})//{}参数可不写
           //固定格式
           .then(function(response){ //response
               //resolve 成功
               console.log(response);
                return response.json();
           })
           //获取数据
           .then(function(data){//返回的是数据
                console.log(data);
           })
           .catch(function(){//出错
               //reject 失败
           });
    </script>
</head>
<body>
    
</body>
</html>

 

这篇关于Ajax请求的方式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!