axios delete 请求

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

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

时间: 2024-10-16 00:17:22

axios delete 请求的相关文章

vue2.0项目实战--使用axios发送请求

在Vue1.0的时候有一个官方推荐的 ajax 插件 vue-resource,但是自从 Vue 更新到 2.0 之后,官方就不再更新 vue-resource. 关于为什么放弃推荐? -> 尤大原话 最近团队讨论了一下,Ajax 本身跟 Vue 并没有什么需要特别整合的地方,使用 fetch polyfill 或是 axios.superagent 等等都可以起到同等的效果, vue-resource 提供的价值和其维护成本相比并不划算,所以决定在不久以后取消对 vue-resource 的官

使用axios发送请求

在Vue1.0的时候有一个官方推荐的 ajax 插件 vue-resource,但是自从 Vue 更新到 2.0 之后,官方就不再更新 vue-resource. 关于为什么放弃推荐? -> 尤大原话 最近团队讨论了一下,Ajax 本身跟 Vue 并没有什么需要特别整合的地方,使用 fetch polyfill 或是 axios.superagent 等等都可以起到同等的效果, vue-resource 提供的价值和其维护成本相比并不划算,所以决定在不久以后取消对 vue-resource 的官

axios网络请求

axios网络请求 淘汰ajax,jquery ajax,选择axios axios名称的由来? 个人理解 axios: ajax i/o system 请求方式 axios(config) //默认请求方式 axios.request(config) axios.get(url,{config}) axios.delete(url,{config}) axios.head(url,{config}) axios.post(url,data,{config}) axios.put(url,dat

WebAPI IIS PUT和DELETE请求失败

IIS拒绝PUT和DELETE请求是由于IIS为网站默认注册的一个名为WebDAVModule的自定义HttpModule导致的,如果我们的站点不需要提供针对WebDAV的支持,解决这个问题最为直接的方式就是利用如下配置将注册的HttpModule移除即可: 1 <system.webServer> 2 <modules runAllManagedModulesForAllRequests="true"> 3 <remove name="WebD

Ajax中Put和Delete请求传递参数无效的解决方法(Restful风格)

本文装载自:http://blog.csdn.net/u012737182/article/details/52831008    感谢原文作者分享 开发环境:Tomcat9.0 在使用Ajax实现Restful的时候,有时候会出现无法Put.Delete请求参数无法传递到程序中的尴尬情况,此时我们可以有两种解决方案:1.使用地址重写的方法传递参数.2.配置web.xml项目环境. 测试的程序为: @RequestMapping(value = "/member", method =

SpringMVC表单中post请求转换为put或delete请求

1.在web.xml文件中配置 1  <!-- HiddenHttpMethodFilter过滤器可以将POST请求转化为put请求和delete请求! --> 2    <filter> 3     <filter-name>hiddenHttpMethodFilter</filter-name> 4     <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter&

php在IIS上put,delete请求报404

方法一:配置C:\Windows\System32\inetsrv\Config\applicationHost.conf的put,delete 方法二:网传最广之方法,修改项目的web.config文件,在<system.webServer></system.webServer>里面贴上下面代码,移除WebDAVModule <modules runAllManagedModulesForAllRequests="true"> <remove

WebAPI IIS PUT和DELETE请求失败 405

IIS拒绝PUT和DELETE请求是由于IIS为网站默认注册的一个名为WebDAVModule的自定义HttpModule导致的,如果我们的站点不需要提供针对WebDAV的支持,解决这个问题最为直接的方式就是利用如下配置将注册的HttpModule移除即可: 1 <system.webServer> 2 <modules runAllManagedModulesForAllRequests="true"> 3 <remove name="WebD

ABP PUT、DELETE请求错误405.0 - Method Not Allowed 因为使用了无效方法(HTTP 谓词) 引发客户端错误 No &#39;Access-Control-Allow-Origin&#39; header is present on the requested resource

先请检查是否是跨域配置问题,请参考博客:http://www.cnblogs.com/donaldtdz/p/7882225.html 一.问题描述 ABP angular前端部署后,查询,新增都没问题,但更新和删除会报一个跨域问题的错误,详细信息如下: PUT http://localhost:8060/api/services/app/User/Update 405 (Method Not Allowed) users:1 Failed to load http://localhost:80