我在所有頁面中都有一個共同的標題,除了某些頁面,其中有一些選項的標題的右側。例如,我的標題的右側將具有以下選項:塊,撰寫,編輯取決於頁面。可以從tiles-config.xml中設置此headerShowIcons,然後在rhsHeader.jsp中使用它。Apache Tiles 2.2.2將tiles-config.xml傳遞給JSP
有沒有什麼辦法讓我可以通過從瓷磚-config.xml中rhsHeader.jsp一些值,並基於該值我想要顯示的選項(即阻止,編輯或刪除)
示例:如果我想向用戶顯示Compose選項,我只需從tiles-config.xml傳遞值(即headerShowIcons ='compose')並在JSP中使用它。如果我想要顯示Block,我將傳遞headerShowIcons ='block',它將被rhsHeader.jsp讀取以顯示Block選項。我希望這將是更清晰
瓷磚-config.xml中
<definition name="*/*/*/*/*/index" template="/{1}/{2}/xyz/{4}/layouts/layout.jsp">
<put-attribute name="lhsHeader" value="/{1}/{2}/xyz/s/headerWithBack.jsp" />
<put-attribute name="rhsHeader" value="/{1}/{2}/xyz/s/rhsHeader.jsp"/>
<put-attribute name="body" value="/{1}/{2}/xyz/s/myProfile.jsp" />
</definition>
layout.jsp
<!-- What should I add here to meet the requirement -->
<body>
<header>
<div>
<tiles:insertAttribute name="header"/>
<tiles:insertAttribute name="rhsHeader"/>
</div>
</header>
<div>
<tiles:insertAttribute name="body"/>
</div>
</body>
rhsHeader.jsp是這樣的:
<tiles:useAttribute name="headerShowIcons" />
<div class="RHS">
<ul>
<!-- I want to show the options (like- Block,Delete,etc) which will be passed from tiles-config.xml to rhsHeader.jsp (which here I have written it as headerShowIcons)-->
<c:choose>
<c:when test="${headerShowIcons eq 'refine'}">
<li><a href="#" class="refine">Refine</a></li>
</c:when>
<c:when test="${headerShowIcons eq 'block'}">
<li><a href="#" class="block">Block</a></li>
</c:when>
<c:when test="${headerShowIcons eq 'edit'}">
<li><a href="javaScript:void(0);" class="edit">Edit</a></li>
</c:when>
<c:when test="${headerShowIcons eq 'delete'}">
<li><a href="javaScript:void(0);" class="delete">Delete</a></li>
</c:when>
<c:otherwise>
<p>test</p>
</c:otherwise>
</c:choose>
</ul>
我已經編輯了問題,我想這會更清楚了。 –
@ balboa_21看到更新回答 – QGA
請看問題的大膽部分。[有什麼辦法嗎?] –