gpt4 book ai didi

java - 如何通过 Controller POST 请求更新 View 中的某些属性

转载 作者:行者123 更新时间:2023-12-02 05:57:49 25 4
gpt4 key购买 nike

我正在开发一个旧的 Spring 项目,我想根据我的发布请求更新 View 中的某些字段。

我尝试了以下方法,但没有成功:

@RequestMapping(value="/dashboard/{calories}", method=RequestMethod.POST)
public void updateCals (@PathVariable Long calories, Model model, HttpSession session, HttpServletRequest request, HttpServletResponse response) {
request.getSession().setAttribute("tea", tea);
model.addAttribute("tea", tea);
}

我应该在末尾添加返回或重定向吗?任何帮助将不胜感激

最佳答案

返回重定向:

@RequestMapping(value="/dashboard/{calories}", method=RequestMethod.POST)
public void updateCals (@PathVariable Long calories, Model model, HttpSession session, HttpServletRequest request, HttpServletResponse response) {
request.getSession().setAttribute("tea", tea);
model.addAttribute("tea", tea);
return "redirect:/example";
}

关于java - 如何通过 Controller POST 请求更新 View 中的某些属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55996861/

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