码迷,mamicode.com
首页 > 移动开发 > 详细

axios delete 请求

时间:2018-04-12 11:35:21      阅读:4106      评论:0      收藏:0      [点我收藏+]

标签:请求   post   arc   data   多个参数   error   arch   ios   pos   

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

 

axios delete 请求

标签:请求   post   arc   data   多个参数   error   arch   ios   pos   

原文地址:https://www.cnblogs.com/xianhuiwang/p/8806015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!