ModelMap 属性未传递值

发布于 2024-11-28 10:23:47 字数 899 浏览 0 评论 0原文

我遇到了 modelmap 属性的问题..这是我的 xyz.jsp 文件..

<select name="list">
   <option value="-">Choose a Value</option>
   <c:forEach items="${sectionList}" var="section">
   <option value="${section.code}">${section.description}</option>
   </c:forEach>
</select>

和控制器类...

 @RequestMapping(value="index", method = RequestMethod.GET)
  public String mainList(ModelMap modelMap){
     modelMap.addAttribute("sectionList", sectionService.getAllSectionList());
     return "home";
  }

但在网页上我没有看到下拉列表中的选项..我看到的只是一个值说“${section.description}”..事实上这是html中的源代码..

<select name="division" >
  <option value="-">Choose a Value</option>
  <option value="${section.code}">${section.description}</option>
</select>

对我在这里做错了什么有任何帮助吗?谢谢!

I am having issues with modelmap attributes.. this is my xyz.jsp file..

<select name="list">
   <option value="-">Choose a Value</option>
   <c:forEach items="${sectionList}" var="section">
   <option value="${section.code}">${section.description}</option>
   </c:forEach>
</select>

and the controller class...

 @RequestMapping(value="index", method = RequestMethod.GET)
  public String mainList(ModelMap modelMap){
     modelMap.addAttribute("sectionList", sectionService.getAllSectionList());
     return "home";
  }

But on the web page I don't see the options in the drop down.. All I see is only one value saying "${section.description}".. infact this is the source in html..

<select name="division" >
  <option value="-">Choose a Value</option>
  <option value="${section.code}">${section.description}</option>
</select>

Any help on what am I doing wrong here? Thanks!

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

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

发布评论

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

评论(2

小…楫夜泊 2024-12-05 10:23:47

您是否尝试过

did you try <c:out value="${section.[attribue]}/>? otherwise it will be displayed as string.

何止钟意 2024-12-05 10:23:47

您的 lib 文件夹中似乎没有 jstl-{version}.jar

It looks like you dont have jstl-{version}.jar in your lib folder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文