gpt4 book ai didi

java - 如何将信息放入 ModelMap 而不会出现在查询字符串中?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:01:30 25 4
gpt4 key购买 nike

如果我向 ModelMap 添加属性:

    model.addAttribute("abc", 123);

并显示 View :

@RequestMapping(value = "/foo", method = RequestMethod.GET)
public final String foo(HttpServletRequest request, BindingResult bindResult, ModelMap model) {
model.addAttribute("abc", 123);
return "foo";
}

我在浏览器地址栏中看到了这个:

http://localhost:6060/foo?abc=123

是否可以将属性添加到模型而不显示为查询字符串名称-值对? (我正在使用 Spring MVC 3.0)

最佳答案

您可能在 Controller 中的某处使用了 @ModelAttribute 注释。
查看此问题的答案 question .

关于java - 如何将信息放入 ModelMap 而不会出现在查询字符串中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6155417/

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