我对thymeleaf非常陌生,我一直致力于在jsp中运行良好的项目。现在我必须转向弹簧靴我遇到了一些问题。我有这个控制器,当用户请求映射/工作人员和 userClickManager 得到值 true ,我想要更改index.html的同一文件中的内容
@RequestMapping(value = "/", method = RequestMethod.GET)
private ModelAndView index() {
ModelAndView model = new ModelAndView("index");
model.addObject("title", "Home");
model.addObject("userClickHome", true);
return model;
}
@RequestMapping("/staff")
private static ModelAndView staff(){
ModelAndView view = new ModelAndView("index");
view.addObject("title", "Manager");
view.addObject("userClickManagers", true);
return view;
}
这是我的旧jsp代码的原型只是希望它们在百里香感谢。
<c:if test="${userClickHome==true}">
<!-- load the manager.jsp file -->
<%@include file="homeContent.jsp" %>>
</c:if>
<c:if test="${userClickManagers==true}">
<!-- load the manager.jsp file -->
<%@include file="Manager.jsp" %>
</c:if>
答案 0 :(得分:0)
你的百万美元html是什么样的?如果您读取set属性,请使用th:insert或th:替换为您的条件。