ajax引入第二三种方法

fetch

 <script>
        // {参数}
        /*
        then response
        then data
        */
     fetch('./00 data.json',{})
        .then(function(response) {
            // resolve
            console.log(response)
            return response.json();
        })
        .then(function(data) {
            console.log(data);
        })
        .catch(function(){
            // reject
        });
    </script>
axios
 <script>
        /*
          参数 params
          数据 .data
        */
        axios.get("./00 data.json",{
            //Headers:{
               
            // },
            params:{
                id:1001
            }
        })
        .then(function(response){
            console.log(response.data)//data请求回来的数据
        })
        .catch(function(err){
            console.log(err)
        })
    </script>
posted @ 2021-11-23 11:32  翟莹萍  阅读(211)  评论(0编辑  收藏  举报