欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue-element-admin的axios api 封装get, post, put, delelt传参方式

程序员文章站 2022-04-15 13:28:18
...
// 项目中用到的所有分类树的接口
import request from '@/utils/request'

// 这个是get拼接的传参 第一次遇到这种风格.......
export function getStandardTree(data, type) {
  return request({
    url: '/classification/tree/' + data + "/" + type,
    method: 'get',
  })
}



// get请求 单个参数
export function getStandardTree2(data) {
  return request({
    url: '/classification/tree' + data,
    method: 'get'
  })
}



// 以下都是JSON格式传参的接口
// get请求 多个参数
export function getStandardTree1(data) {
  return request({
    url: '/classification/tree',
    method: 'get',
    params: data 
  })
}



// post请求 
export function getStandardTree3(data) {
  return request({
    url: '/classification/tree',
    method: 'post',
    data 
  })
}

平常我们一直说的axios传参方式是: get传参用params, post 用data; put和delelt与post传参f相同

总结是上面几类