gpt4 book ai didi

javascript - 删除请求ajax jquery不起作用

转载 作者:行者123 更新时间:2023-11-27 23:26:10 25 4
gpt4 key购买 nike

我正在尝试使用 Ajax 执行删除请求,但它不起作用,我收到内部错误,但我看不到问题所在,你能帮助我吗?

这是javascript的部分代码:

$.ajax({
url: 'http://localhost:8080/actors/remover',
type: 'DELETE',
data: JSON.stringify(movie),
traditional:true,
dataType: 'json',
success: function(result) {...},
error: function(result){...}
});

这里是我的 Controller 的代码:

@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

最佳答案

我在您的代码中看到的问题:

  1. dataType:'json' 如果您获得 json 对象形式的响应,则使用该数据类型。
  2. 在后端,您根本不生成 json,但有一个 boolean
  3. 您必须使用contentType:'application/json'
  4. 并且无需使用traditional:true
<小时/>

所以我建议你使用这个:

$.ajax({
url: 'http://localhost:8080/actors/remover',
type: 'DELETE',
data: {movie:movie}, //<-----this should be an object.
contentType:'application/json', // <---add this
dataType: 'text', // <---update this
success: function(result) {...},
error: function(result){...}
});

关于javascript - 删除请求ajax jquery不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34946381/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com