1,[size=small;][b]模板继承[/b]
[/size]
使用
xxx.html中这样写:
在被继承的文件中,写的内容,将会把继承的xxx.html中的
2,Create tags(创建模板的公共包含块)
在app/views/tags/文件夹下创建了hello.html,
那么在你定义的模板中可以这么引用它
[b]给公共包含块中创地参数:[/b]
包含块引用的[b]参数[/b]前必须以 '_'下划线开头,例如:
在引用包含块的模板文件中,这么[b]传参数:[/b]
如果其中传递多个参数,可以这么传
如果只传递一个参数:
Play默认提供一个参数名叫做Hello ${_arg}!
你就这么传参数#{hello 'Bob' /},只要传值,不用给参数名即可.
你可以在保护块中使用
那么,你在引用包含块的模板中可以
这么写,用Bob替换
的内容。
2,定义自己的模板方法
这里的format方法是Play自带的,我们可以通过继承play.templates.JavaExtensions自定义Play模板的方法.
我们可以这么引用:
你可以通过这么给View传递参数,
在Play的Controller中写
给页面传递对象,这么使用的像:request.setAttribute("",xxx);
[/size]
使用
#{extends 'xxx.html'}
xxx.html中这样写:
<h1>Main template</h1>
<div id="content">
#{doLayout /}
</div>
在被继承的文件中,写的内容,将会把继承的xxx.html中的
#{doLayout /}
替换成被继承文件中写的内容.
2,Create tags(创建模板的公共包含块)
在app/views/tags/文件夹下创建了hello.html,
那么在你定义的模板中可以这么引用它
#{hello /}
[b]给公共包含块中创地参数:[/b]
包含块引用的[b]参数[/b]前必须以 '_'下划线开头,例如:
Hello ${_name} !
在引用包含块的模板文件中,这么[b]传参数:[/b]
#{hello name:'Bob' /}
如果其中传递多个参数,可以这么传
#{hello name:'Bob' password:'asdfasdf' email:'aa@aa.cc' /}
即:
#{hello 参数名:参数对象 ...... ........}可以传很多很多个参数.
其中参数对象可以是个集合或者对象
如果只传递一个参数:
Play默认提供一个参数名叫做Hello ${_arg}!
你就这么传参数#{hello 'Bob' /},只要传值,不用给参数名即可.
你可以在保护块中使用
#{doBody /}
标记
那么,你在引用包含块的模板中可以
#{hello}
Bob
#{/hello}
这么写,用Bob替换
#{doBody /}
的内容。
2,定义自己的模板方法
<ul>
#{list items:products, as:'product'}
<li>${product.name}. Price : ${product.price.format('## ###,00')} €</li>
#{/list}
</ul>
这里的format方法是Play自带的,我们可以通过继承play.templates.JavaExtensions自定义Play模板的方法.
import play.templates.JavaExtensions;
public class CurrencyExtensions extends JavaExtensions {
public static String ccyAmount(Number number, String currencySymbol) {
String format = "'"+currencySymbol + "'#####.##";
return new DecimalFormat(format).format(number);
}
}
我们可以这么引用:
<em>Price: ${123456.324234.ccyAmount()}</em>
你可以通过这么给View传递参数,
在Play的Controller中写
renderArgs.put("user", user );
给页面传递对象,这么使用的像:request.setAttribute("",xxx);