关于axios小记

axios的get请求:

this.axios.get('/list/getPro',{params: {page: 1,size: 10}}).then((res) => {
    console.log(res)
})
这里“params”必须加,不然参数传递失败

axios的post请求:

this.axios.post('/list/product',{ids: 12}).then((res) => {
                    console.log(res)
})
这里“params”就不用加,直接传入对象即可
posted @ 2020-05-06 17:14  谬论结局  阅读(151)  评论(0编辑  收藏  举报