为了账号安全,请及时绑定邮箱和手机立即绑定

axios的delete方法怎么写

axios的delete方法怎么写

炎炎设计 2019-03-03 15:43:02
this.$ajax({          method: 'delete',          url: '/api/commodityCategory/delete',          data: {            "id":"a"          },        })        .then(function(response) {          console.log(response);        })        .catch(function(response) {          console.log(response);        });这样写好像毫无反应,也没有回报.看文档貌似也没有例子this.$ajax 在vue的main.js配置过了
查看完整描述

2 回答

?
至尊宝的传说

TA贡献1789条经验 获得超10个赞

axios.delete({

  url: '/api/commodityCategory/delete',

  data: {

    "id":"a"

  }

})

.then(function(response) {

  console.log(response);

})

.catch(function(response) {

  console.log(response);

});


或者:


axios({

  method: 'delete',

  url: '/api/commodityCategory/delete',

  data: {

    "id":"a"

  }

})

.then(function(response) {

  console.log(response);

})

.catch(function(response) {

  console.log(response);

});


查看完整回答
反对 回复 2019-03-08
?
侃侃无极

TA贡献2051条经验 获得超10个赞

axios说实话我没见过你所写的methods这个属性

delete应该是axios的一个方法

你应该axios.delete(url).then(res=>{}) 这种格式


查看完整回答
反对 回复 2019-03-08
  • 2 回答
  • 0 关注
  • 2864 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信