1. 程式人生 > 其它 >fetch和Ajax

fetch和Ajax

<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>