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.
到目前为止,我在播放文档中看到的所有视图渲染示例都需要实际指定一个视图,然后进行 render() 调用。
有没有办法为每个动作配置一个默认视图,然后让动作自动呈现指定的默认视图?
在 play 2.0 中,模板实际上是返回类 Html 实例的函数,然后 Actions 使用这些实例来创建回复,这意味着您必须调用它们才能获得任何输出。
您也许可以创建一些反射 trixery 来实现您所描述的内容,但没有任何类似的内置功能。我个人认为这是 Play 的真正优势之一,它允许编译器检查模板的所有参数是否已给出且类型正确,而不是因为某些映射或上下文对象的类型错误而出现运行时错误.