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 2.0 中是否可以在模板中使用外部模型对象?
我可以从 Controller 类中的另一个 jar 引用模型对象。我不知道如何在 Play 2.0 模板文件中引用外部模型对象。
没问题。首先,通过将 jar 添加到 lib 目录或通过 projects/Build.scala 中的“托管依赖项”,将类添加到类路径中。在模板视图文件中声明模型类时,请确保具有完全限定名称。在模板中,您可以引用任何公共方法或成员。
@(varName : fully.qualified.name.MyClass) <h1>@varName.myMember</h1> <h1>@varName.myMethod</h1>