1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <body> <button id="btnGET">GET</button> <button id="btnPOST">POST</button> </body> <script> (axios.get的写法) document.querySelector('#btnGET').addEventListener('click',async function(){
const {data:res} =await axios.get('http://www.liulongbin.top:3006/api/getbooks',{ params:{id:1} }) console.log(res); }) (axios.post的写法) document.querySelector('#btnPOST').addEventListener('click',async function(){ const {data:res}=await axios.post('http://www.liulongbin.top:3006/api/post',{name:'zs',gender:'女'}) console.log(res); }) </script>
|