微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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>

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐