【发布时间】:2016-01-22 12:08:57
【问题描述】:
我正在尝试使用 Ajax 执行 DELETE 请求,但它不起作用,我收到一个内部错误,但我看不到问题,你能帮帮我吗?
这是javascript的部分代码:
$.ajax({
url: 'http://localhost:8080/actors/remover',
type: 'DELETE',
data: JSON.stringify(movie),
traditional:true,
dataType: 'json',
success: function(result) {...},
error: function(result){...}
});
这里是我的控制器的代码:
@RequestMapping(value = "/actors/remover", method = RequestMethod.DELETE)//TODO, elimina un attore dal db
public boolean remove(@PathVariable("movie") int movie) {
System.out.println("Attori da cancellare");
serv.deleteActors(movie);
return true;
}//remove
【问题讨论】:
标签: javascript jquery ajax controller delete-record