axios用法

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

原文地址:https://www.cnblogs.com/xiaopo/p/14335713.html