我知道有可能在这样的模板中定义一个方法:
@def myMethod(String parameter){
before @parameter after
}
并使用它:
@myMethod("my object")
这将输出:
before my object after
我可以在Java代码中定义myMethod
并在多个模板中使用它吗?
答案 0 :(得分:0)
您无需在Java代码中定义该方法。相反,在您的节奏template home directory中创建一个名为__global.rythm
的文件,并在那里定义该方法,然后您的所有节奏模板将自动选择该方法,因为__global.rythm
将是@include
Rythm引擎自动在每个模板中。下面是我项目中真正的全局rythm文件:
@import com.abc.model.*
@import org.rythmengine.spring.web.Csrf
@import org.rythmengine.RythmEngine
@import com.abc.AppConfig
@import com.abc.model.color.*;
@args Csrf csrf
@def String csrfParam() {
return "__csrf=" + ((null == csrf) ? "nocsrf" : csrf.value);
}
@def RythmEngine rythm() {
return __engine();
}
@def User me() {
return User.me();
}
@def boolean loggedIn() {
return User.me() != null;
}
@def String host() {
return com.abc.AppConfig.host()
}