我开始学习Spring MVC和Web开发。我的控制器中有这个方法
@GetMapping("/deleteCar")
public String deleteCar(@RequestParam("carId") int carid) {
carService.deleteCar(carid);
return "redirect:/car/cars";
}
如何通过html表单传递请求参数?
<section>
<form action="${pageContext.request.contextPath}/car/deleteCar">
<input type="text" id="deleteCarWithID" value="${carId}">
</form>
</section>
我收到这个警告:
WARNING: Resolved [org.springframework.web.bind.MissingServletRequestParameterException: Required int parameter 'carId' is not present]
谢谢你!
慕容森
相关分类