swagger前端传值

Parameter Type 传值方法
path 直接在路径中传值
body data传值
query params传值

原生axios使用例子:

this.$axios({
    url:`/list/${id}`, // path参数
    method:'post',
    data: ['123'], // body参数
    params:{ type: 1 } // query参数
}).then(res=> {
    console.log(res)
})

你可能感兴趣的:(前端)