我需要显示用户列表,我从控制器中获得了此列表。@GetMapping("/maintenance-user")public ModelAndView Index() throws Exception{ ModelAndView model = new ModelAndView("maintenance/user/index"); model.addObject("model",service.get()); return model;}service.get返回一个Iterable对象这是我的看法<p th:text="${model.Id}"></p>但它返回属性或在对象上找不到字段“ Id”。我在这里想念什么?
添加回答
举报
0/150
提交
取消