导航菜单
getByName(name)
menuFinder.getByName(name)
描述
根据 metadata.name
获取菜单。
参数
name:string
- 菜单的唯一标识metadata.name
。
返回值
示例
<div th:with="menu = ${menuFinder.getByName('menu-foo')}">
<ul th:with="menuItems = ${menu.menuItems}">
<li th:each="menuItem : ${menuItems}">
<a
th:href="@{${menuItem.status.href}}"
th:text="${menuItem.status.displayName}"
th:target="${menuItem.spec.target?.value}"
>
</a>
</li>
</ul>
</div>
getPrimary()
menuFinder.getPrimary()