如何指定 Zend Framework 使用与操作默认文件不同的视图文件?
我有一个操作 successAction(),它使用我的视图文件夹中的文件 success.phtml,我如何告诉该操作我希望它使用 success2.phtml 文件
I have an action, successAction(), it uses the file in my views folder, success.phtml, how do I tell the action that I want it to use the success2.phtml file instead
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
Zend_Controller_Action
的render
。这将在controller-name/success2.phtml中呈现视图脚本,您应该阅读 Zend Controller 上的文档了解更多信息。
Use
Zend_Controller_Action
'srender
. This would render the view script in controller-name/success2.phtmlYou should read the docs on Zend Controller's for more.