博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RequestMethod.DELETE相关,如何用jquery实现RequestMethod.DELETE请求
阅读量:5140 次
发布时间:2019-06-13

本文共 3906 字,大约阅读时间需要 13 分钟。

昨天看上面的博客,然后自己实践了一下,还是不行,今天早上来就用我的办法了猜

不知道为什么,虽然现在实现了但是还不知道为什么

jauery好像也支持这样写了吗  type : 'DELETE',

javascript代码

function DeleteFatherModule(moduleId, title){    //alert(moduleId + "" + title);    if (!confirm("确认删除"" + title + ""吗?"))    {        return false;    }    //fatherModule_    $("#fatherModule_"+moduleId).html("删除操作中...");    $.ajax(    {        type : 'DELETE',        dataType : 'json',        contentType : 'application/json;charset=utf-8',        url : "/sfk_BBS02/rest/fatherModule/" + moduleId,        // data:{_method:'delete'},        success : function(data)        {            // data in (true,false)            if (data)            {                $("#fatherModule_"+moduleId).html("删除成功!");            }            else            {                $("#fatherModule_"+moduleId).html("删除失败!");            }        },        error : function()        {            $("#fatherModule_"+moduleId).html("Error!");        }    });

后台代码

package sfk.bbs.admin.rest;import org.apache.log4j.Logger;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.HttpStatus;import org.springframework.http.ResponseEntity;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.RestController;import sfk.bbs.admin.action.AdminIndexAction;import sfk.bbs.admin.service.AdminIndexService;@RestController@RequestMapping("/rest")public class AdminIndexRest{    private static Logger log = Logger.getLogger(AdminIndexAction.class);    @Autowired    private AdminIndexService adminIndexService;         @RequestMapping(value="/fatherModule/{id}", method=RequestMethod.DELETE)    public ResponseEntity
delete(@PathVariable("id") Long id) { System.out.println("success"); return new ResponseEntity
(adminIndexService.deleteFatherModule(id),HttpStatus.OK); }}

配置文件 applicationContext.xml

web.xml

sfk_BBS02
log4jConfigLocation
classpath:log4j.properties
org.springframework.web.util.Log4jConfigListener
springMVC
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:applicationContext.xml
1
springMVC
/
index.html
index.htm
index.jsp
default.html
default.htm
default.jsp

 

转载于:https://www.cnblogs.com/rocky-AGE-24/p/5154042.html

你可能感兴趣的文章
IOS界面调试神器DCIntrospect
查看>>
Javascript 香港身份证号校验
查看>>
父类引用指向子类对象 调用函数常见问题
查看>>
随机数
查看>>
Oracle中pls_logger记录日志信息
查看>>
决svn的working copy locked并且cleanup恢复不能的情况
查看>>
数据库备份和恢复新神器SQL Angel for SQL Server问世
查看>>
多态的优缺点
查看>>
235课后第三题
查看>>
Java native关键字
查看>>
设计新人到设计新人=菜鸟到菜鸟?NO!
查看>>
【微服务那些事】Microservices场景下的持续部署
查看>>
HDU 5592 ZYB's Premutation
查看>>
逻辑思维训练之假设法
查看>>
解决Nginx: [error] open() "/usr/local/Nginx/logs/Nginx.pid" failed(2:No such file or directory)...
查看>>
jfinal解决post get请求乱码问题
查看>>
一个屌丝程序猿的人生(六)
查看>>
(xampp)lampp 下配置https(ssl)自签双向认证以后 apache无法启动解决方案
查看>>
ADO.NET实体框架Entity Framework模型-基于XML解析
查看>>
struts2中的action交由spring管理
查看>>