我的問題如下: 在此代碼在BLC標籤Thymeleaf個標籤
<header>
<h1 th:utext="${BLC_PAGE.pageFields[menu_name]}"></h1>
</header>
<blc:menu resultVar="menuItems" menuName="${BLC_PAGE.pageFields[menu_name]}" />
<ul th:if="${not #lists.isEmpty(menuItems)}">
<li th:each="menuItem : ${menuItems}">
<a th:href="@{${menuItem.url}}" th:class="${menuItemStat.first}? 'home'">
<span th:utext="${menuItem.label}"></span>
</a>
</li>
</ul>
行<h1 th:utext="${BLC_PAGE.pageFields[menu_name]}"></h1>
得到實際的菜單的名稱。我需要在這一行<blc:menu resultVar="menuItems" menuName="${BLC_PAGE.pageFields[menu_name]}" />
的menuName做同樣的事情,但"${BLC_PAGE.pageFields[menu_name]}"
是不合適的,因爲它是從thymeleaf標籤庫。任何想法如何在blc:menu標籤中獲得此值?
- 闊葉樹:http://www.broadleafcommerce.com/docs/core/current /闊葉概念/表示層#thymeleaf – ProfEidarios