Tapestry 和 Wicket 的比较
2010-03-30 00:00:00 来源:WEB开发网清单 21. Wicket 的 DataView HTML 标记
<table>
<tr>
<th>ID</th>
<th>Subject</th>
<th>Creator</th>
<th>Recipient</th>
</tr>
<tr wicket:id="receivedItemsView">
<td><span wicket:id="itemId">ID</span></td>
<td><span wicket:id="subject">Subject</span></td>
<td><span wicket:id="creator">Creator</span></td>
<td><span wicket:id="creationDate">Creation Date</span></td>
<td><span wicket:id="deadline">Deadline</span></td>
</tr>
</table>
<span wicket:id="receivedItemsPages">Paging navigator links</span>
国际化
开发一个多语言应用程序时,国际化支持在制定决策时起着至关重要的作用。 Tapestry 和 Wicket 能够提供几乎无限的本地化功能。你可以本地化组件文本(标签、消息 — 常见内容)以及像图片这样的静态资源,甚至可以本地化整个标记模板,只要将具有本地标识符的后缀添加到本地化资源名称中,如下所示:
清单 22. Tapestry 和 Wicket 中的本地化
ListActionItems.html
ListActionItems.properties
ListActionItems_ru_RU.html
ListActionItems_ru_RU.properties
更多精彩
赞助商链接