我使用瓷磚庫處理我的應用程序的模板。如何將變量傳遞給瓷磚(瓷磚庫)
tile.xml:
<definition name="template1" template="/WEB-INF/template/default/template1.jsp">
...
<put-attribute name="menu" value="/WEB-INF/template/default/menu.jsp" />
...
</definition>
template1.jsp
<html>
<body>
...
<tiles:insertAttribute name="menu" />
<tiles:insertAttribute name="menu" />
...
</body>
</html>
正如你可以看到我有插入到瓷磚 「菜單」。由於我必須在「menu.jsp」裏面打印不同的菜單,我怎樣才能發送2個不同的變量到2個不同的菜單「菜單」?
更清晰
<html>
<body>
...
<tiles:insertAttribute name="menu" /> <--- here I should pass a variable called menu1
<tiles:insertAttribute name="menu" /> <--- here I should pass a variable called menu2
...
</body>
</html>
謝謝大家
https://tiles.apache.org/framework/tutorial/advanced/nesting-extending.html – Pragnani