symfony 中的预渲染钩子?
symfony 1.4中有类似预渲染钩子的东西吗?我想在视图渲染开始之前执行一些代码。
There is something like pre-render hook in symfony 1.4? I want to execute some code right before view render starts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以在
/config/filters.yml
文件中渲染视图之前设置过滤器。有关更多详细信息,请查看此处。You can also set a filter before the view is rendered in the
<app>/config/filters.yml
file. For further details, take a look here.尝试在操作类中使用
preExecute()
: http:// /www.symfony-blog.co.uk/tag/preexecute/。Try to use
preExecute()
in action class: http://www.symfony-blog.co.uk/tag/preexecute/.Symfony 允许您配置使用的视图类 在模块级别 (module.yml):
然后您可以创建一个 myPHPView 类并重写 sfPHPView::render 方法。
Symfony allows you to configure the view class used at the module level (module.yml):
You could then create a myPHPView class and override the
sfPHPView::render
method.