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

400 Bad Request(Required String parameter ‘xxx‘ is not present)

程序员文章站 2022-07-15 13:07:15
...

最近和后端对接时候遇到了遇到了Required String parameter ‘xxx’ is not present;
后找到解决方法:

export const delSelectArticleApi = (params, query) => {
  return request({
    url:'xxxxxxxxxxxxxxxxx',
    method: 'POST',
    headers: {
      'Content-Type': 'application/json'
    },
    data: query,
    params: params
  })
}