axios delete方法怎么把参数放在body中

发布于 2022-09-12 23:33:42 字数 504 浏览 9 评论 0

export function deleteFactory(factoryId) {
  return request({
    url: `factory/delete`,
    method: 'delete',
    data:{factoryId}
  })
}

request是封装的一个axios实例

    handleDelete($index, row) {
      const id = row.factoryId
      deleteFactory(id).then(res=>{
        console.log(res.data.success)
      })

    },

看到delete方法第二个参数是config,不懂这个config是什么意思
swagger中的调试
image.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手心的海 2022-09-19 23:33:42

放在body中简单,但要区分参数类型,比如是FormData还是json等

var axios = require('axios');
var qs = require('qs');

//1
var config = {
  method: 'delete',
  url: 'xxx',
  headers: { 
    'Content-Type': 'application/x-www-form-urlencoded'
  },
  data : qs.stringify({'a': '1','b': '2' })
};

//2
var config = {
  method: 'delete',
  url: 'xxx',
  headers: { 
    'Content-Type': 'application/json'
  },
  data : JSON.stringify({"a":1,"b":2})
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文