axios delete 请求

在传递一个参数的时候,直接把参数放在请求连接后面,用'/' 连接就可以了

 this.axios.post(this.APIURL+'/'+ID)  //http://www.ddd.com/1
  .then(response=>{})
  .catch(error=>{})

 

在需要传递多个参数的时候,delete ,在在传递的请求接口后直接带config,写法如下:

  this.axios.delete(this.API.BusinessAudit
    this.axios.delete(this.API.BusinessAudit,
    {data:
this.examineMsg}) //config //,{params:this.examineMsg}) //备用方法 .then(response=>{}) .catch(error=>{})

 

参考: http://www.sixtymore.cn/archives/199