gpt4 book ai didi

java - 如何在 Spring 中将 List 对象上传到模型中?

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

所以,我在 Controller 中有以下方法:

@RequestMapping(value="/modules.htm",method = RequestMethod.GET )
protected String modules(ModelMap model) throws Exception {

List<Module> modules = moduleService.getStudentModules(course_id);
model.addAttribute....?
return "modules";
}

我需要在 jsp View 中显示此列表,例如:

<h1>Modules: </h1>
module 1
module 2... etc

我需要添加什么才能在 JSP 页面上显示完整列表?我应该如何将它上传到模型并检索它?先感谢您。

最佳答案

传递整个列表:

model.addAttribute("modules", modules);

然后对其进行迭代:

<c:forEach items="${modules}" var="module">
${module.anyProperty}
</c:forEach>

关于java - 如何在 Spring 中将 List 对象上传到模型中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16523526/

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