0
假設我有一個具有2個字段的類Factory:fName和fArea.Is可以通過將單個對象「f1」(一個Factory實例)添加到Model或一個ModelAndView?產生這樣的$ {f.fArea}(其中f是addObject方法的String attributeName參數)。提前感謝!直接訪問對象屬性thymeleaf
假設我有一個具有2個字段的類Factory:fName和fArea.Is可以通過將單個對象「f1」(一個Factory實例)添加到Model或一個ModelAndView?產生這樣的$ {f.fArea}(其中f是addObject方法的String attributeName參數)。提前感謝!直接訪問對象屬性thymeleaf
是的,這是可能的。這句法是thymeleaf表達式的工作的基礎上...
// Controller
@GetMapping("/whatever")
public String whatever(Map<String, Object> model) {
model.put("f", new Factory());
return "whatever";
}
// Template
</span th:text="${f.fArea}" />
http://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html#variables