fetch和Ajax
阿新 • • 發佈:2021-11-23
<script>
/*
then response
then data
*/
fetch('./data.json')
//固定寫法
.then(function (response) {
// resolve
// console.log(response);
return response.json();
})
//引數
.then(function(data){
console.log(data);
})
.then(function () {
// reject
});
</script>
<script src="js/axios.min.js"></script>
<script>
/*
引數 params
資料 .data
*/
axios.get("./data.json",{
params:{
id:1001
}
})
.then(function(response){
console.log(response.data)
})
.catch(function(err){
console.log(err);
})
</script>