论坛首页 Java企业应用论坛

Tapestry5学习小结之二(Loop&ActionLink的基本应用)

浏览 6376 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-02-25  
Start.html
  1. <html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">      
  2. <head>      
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>      
  4. <title>${message:page-title}</title>     
  5. <body>   
  6. <p>      
  7. <t:Loop source="prop:1..10" value="prop:index">      
  8.     <a t:type="ActionLink" t:id="select" t:context="prop:index">${index}a> --      
  9. </t:Loop>   
  10. <p>      
  11. <t:If test="selected">      
  12. you selected: <strong>${selected}</strong>      
  13. </t:If>   
  14. </p>   
  15. </body>   
  16. </html>   

Start.properties:
文本 代码
 
  1. page-title=中文标题  

Start.java
java 代码
 
  1. package org.examples.pages;  
  2.   
  3. //import org.apache.tapestry.annotations.OnEvent;  
  4. import org.apache.tapestry.annotations.Persist;  
  5.   
  6. public class Start {  
  7.          
  8.     private int _index;  
  9.       
  10.     @Persist  
  11.     private int _selected;  
  12.       
  13.     public int getIndex(){  
  14.         return _index;  
  15.     }  
  16.     public void setIndex(int index){  
  17.         _index = index;  
  18.     }  
  19.     public int getSelected(){  
  20.         return _selected;  
  21.     }  
  22.     public void setSelected(int selected){  
  23.         _selected = selected;  
  24.     }  
  25.       
  26.     //@OnEvent(component="select")  
  27.     void onActionFromSelect(int index){  
  28.         _selected = index;  
  29.     }  
  30. }  


小结:
1.用Start.properties来显示非英文字符,在HTML模板中使用表达式${message:*}, *是在properties中定义。
2.Action的事件驱动有二种方式:一是使用annotation @OnEvent(component="select"),然后任意定义一个方法名,如上可以为:void chose(int index);二是按照默认规则定义方法名,以on+动作名称+From+组件ID名,如上动作为Action,组件ID为select(<t:comp id="select" context="prop:index" type="ActionLink">中的id),则方法名为:onActionFromSelect(int index)。
3.Action是默认的事件类型,如果页面中有其他事件类型,则需要声明value值,如:@OnEvent(value="action",component="select")
4.Loop组件包含了之前Count组件,现在核心组件中已无Count组件。</t:comp>
   发表时间:2007-02-26  
请问t5中怎样使用hibernate?
0 请登录后投票
   发表时间:2007-02-26  
似乎目前还没有相关的集成方法。
如果你有idea或者发现有相关的代码,也请你告诉我,呵呵!
0 请登录后投票
   发表时间:2007-02-28  
不错不错
0 请登录后投票
   发表时间:2007-04-16  
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>${message:page-title}</title>
</head>
<body>

<p>
<t:Loop source="prop:1..10" value="prop:index">
<a t:type="ActionLink" t:id="select" t:context="prop:index">${index}</a> --             
</t:Loop>
</p>
<p>
<t:If test="selected">                                                                     
you selected: <strong>${selected}</strong>
</t:If>
</p>
</body>
</html>
T5.0.3 的模版
0 请登录后投票
   发表时间:2007-04-17  
忘记修正了。谢谢!
0 请登录后投票
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics