如何将textarea的值放入spring MVC中?

发布于 2024-11-08 18:11:33 字数 41 浏览 0 评论 0原文

例如,如何使用 spring mvc 将内容从数据库加载到文本区域?

How to load content into a textarea using spring mvc, for example - from database ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半葬歌 2024-11-15 18:11:33

使用返回包含内容的属性的 ModelAndView 的方法编写 MVC 控制器,并编写使用 Modell

@Controller
@RequestMapping("/demo/**")
class Demo{

   @Request
   public ModelAndView() {
      ModelMap modelMap = new ModelMap();
      modelMap.putAttribute("content", "Hello World, this is a sunny day...");
      return new ModelAndView("demoView", modelMap);
   }
}

demoView.jsp中的属性创建文本区域的 JSP 页面(来自 ModelAndView 的视图)

...
<textarea name="input" cols="50" rows="10"><c:out value="content"/></textarea>
...

Write an MVC Controller with an method that returns a ModelAndView with an attribute that is contains the content and write a JSP Pages (the view from ModelAndView) that uses creates a text area with the attribute from the Modell

@Controller
@RequestMapping("/demo/**")
class Demo{

   @Request
   public ModelAndView() {
      ModelMap modelMap = new ModelMap();
      modelMap.putAttribute("content", "Hello World, this is a sunny day...");
      return new ModelAndView("demoView", modelMap);
   }
}

demoView.jsp

...
<textarea name="input" cols="50" rows="10"><c:out value="content"/></textarea>
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文