当我按删除按钮时,我被重定向到附加到此按钮的链接,而我想在使用时保持同一页 ResponseEntity
. 按钮如下:
<td><a type="button" class="btn btn-warning" href="/delete-todo?id=${todo.id}">DELETE</a></td>
这是我的控制器:
@RequestMapping(value="/delete-todo")
public ResponseEntity<Void> deleteTodo(@RequestParam int id){
todoService.delete(id);
return ResponseEntity.ok().build();
}
按删除按钮后
删除按钮
有人能告诉我我做错了什么吗 ResponseEntity
.
1条答案
按热度按时间oalqel3c1#
只需返回remove redirect即可: