Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Play中,我可以通过扩展类在 Java 中1.x创建一个。tagplay.templates.FastTags
1.x
tag
play.templates.FastTags
在 Play 2.x 中是否可以在 Java 类中或仅在 scala.html 文件中创建标签?
在 Play 2.0 views( templates) 中只是 Scala 函数,因此您可以轻松地使用一些控制器的方法作为标记:
views
templates
<div> @YourController.yourMethod("your param value") </div>
@查看类似案例
AFAIK,只能在 scala.html 文件中使用。
要了解如何操作,请查看Play 文档。