如何在play框架视图页面中调用scala方法

时间:2013-06-01 05:02:57

标签: scala playframework

我是一个新的游戏框架,我对这些问题有疑问,任何游戏框架的专家都应该回答这些问题

In play framework the scala methods are how to invoke inside view ?

these method will create inside the application or model in the project

问候,Prasanth AR

my language is not good I know, and sorry about that

1 个答案:

答案 0 :(得分:4)

要在Twirl的模板中定义方法,请在名称和代码块之前添加@

@incr(number: Int) = @{ @number + 1 }

在名称

之前调用scala方法或变量添加@符号
<div>@incr(10)</div>

将在11

中返回并打印div