码迷,mamicode.com
首页 > 编程语言 > 详细

使用SpringMVC时报错HTTP Status 405 - Request method 'GET' not supported

时间:2018-11-23 20:35:06      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:attr   mit   alert   port   使用   get   value   报错   false   

GET方法不支持。我出错的原因在于,在JSP中我希望超链接a以post方式提交,但是这里写js代码时出错。

<script type="text/javascript">
    $(function(){
        $(".delete").click(function(){
            var href = $(this).attr("href");
            $("form").attr("action",href).submit();
            //alert("ok");
            return false;
        })        
    })
</script>

js代码本身并没有错,错误的是超链接的配置。

    <form action="" method="post">
        <input type="hidden" name="_method" value="delete" />
    </form>

    <a href="emp/${emp.id }">Delete</a> 

上面是jsp代码,超链接a少了一个class="delete" 

下面这样改就对了。

 <form action="" method="post">
        <input type="hidden" name="_method" value="delete" />
    </form>

    <a class="delete" href="emp/${emp.id }">Delete</a> 

 

使用SpringMVC时报错HTTP Status 405 - Request method 'GET' not supported

标签:attr   mit   alert   port   使用   get   value   报错   false   

原文地址:https://www.cnblogs.com/liaoxiaolao/p/10008946.html

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