作者:skuman2012 | 来源:互联网 | 2023-10-16 10:02
我在模块XYZ的action类中使用以下代码:$这–>setTemplate(“abc.php”);在哪个目录中,它试图找到abc.php?解决方法:请参见http:www.s
我在模块XYZ的action类中使用以下代码:
$这 – > setTemplate( “abc.php”);
在哪个目录中,它试图找到abc.php?
解决方法:
请参见http://www.symfony-project.org/gentle-introduction/1_4/en/06-Inside-the-Controller-Layer#chapter_06_sub_action_termination.此文档页面包含可能的模板名称的完整列表.
要清楚.呼叫
$this->setTemplate("abc");
如果coressponding操作方法返回sfView :: SUCCESS或什么都没有,将强制Symfony呈现模板module / templates / abcSuccess.php.
如果您的操作将返回sfView :: ERROR,将呈现module / templates / abcError.php.
此外,如果您的操作终止并返回’SomeString’;然后渲染module / templates / abcSomeString.php.