1 axios.get('https://api.apiopen.top/getJoke?type=all', { 2 params: {//用于传参 3 type: 'all' 4 } 5 }).then(function (ret) { 6 console.log(ret); 7 })
以上是get请求,delete,post,put同。
1 axios.get('https://api.apiopen.top/getJoke?type=all', { 2 params: {//用于传参 3 type: 'all' 4 } 5 }).then(function (ret) { 6 console.log(ret); 7 })
以上是get请求,delete,post,put同。