//axios封装的ajax //get方法返回值是一个promise方法 // document.querySelector('.get').onclick = function () { // axios.get('/fruits').then(res => { // console.log(res.data) // }) // } //jquery封装的ajax $('.get').click(function () { $.ajax({ url: '/fruits', type: 'get' }).done(res => { console.log(res) }) }) document.querySelector('.post').onclick = function () { axios.post('/fruits', { fruit: '草莓' }).then(res => { console.log(res.data) }) } document.querySelector('.put').onclick = function () { axios.put('/fruits/0', { fruit: '西巴' }).then(res => { console.log(res.data) }) } document.querySelector('.delete').onclick = function () { axios.delete('/fruits/0').then(res => { console.log(res.data) }) }
标签:jquery,function,axios,console,log,get,res,ajax From: https://www.cnblogs.com/GFM0518/p/16630787.html