axios的delete方法怎么写

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配置过了


炎炎设计
浏览 2865回答 2
2回答

至尊宝的传说

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);});

侃侃无极

axios说实话我没见过你所写的methods这个属性delete应该是axios的一个方法你应该axios.delete(url).then(res=>{}) 这种格式
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript