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>