清理 Symfonys 视图模板
我正在评估 PHP Web 框架:Symfony 的项目。到目前为止,一切都组织得很好,除了视图模板,它受到 html 和 php 的不可读/容易出错的混合的影响(我试图调整视图以使用干净的 url,结果只是“现场”的练习)分隔符”)。
是否有任何方法可以清理视图模板,以便将 php 代码移至模型或中间控制器?
我知道 PHPTAL 的存在,但由于 Symfony 的庞大规模,我不知道从哪里开始将像 PHPTAL 这样的东西集成到框架中。
I'm evaluating the PHP webframework: Symfony for a project. Everything is quite well organized so far, except for the view templates which suffer from an unreadable/error prone mix of html and php (I was trying to adapt the views to use clean urls and that just turned out to be an exercise in "spot the delimiters").
Is there any methods of cleaning up the view templates so that the php code is moved to the Model or an intermediate Controller?
I know of the existence of PHPTAL, but because of the sheer size of Symfony I have no idea where to even start integrating somethign like PHPTAL into the framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有有关将 Symfony 与 PHPTAL 集成的教程。
There's tutorial on integrating Symfony with PHPTAL.
我认为这是在模板中结合 PHP 和 HTML 的 symfony 方式。如果您更喜欢使用另一种语言来编写模板,您应该将其中一个 PHP 模板引擎集成到您的 symfony 项目中。除了 PHPTAL 之外还有很多模板引擎,其中一些模板引擎已经在 symfony 上提供了 symfony 插件插件页面(例如 Smarty、XSLT、OPT 和 Haml)
i think it's the symfony way to combine PHP and HTML in templates. if you prefer using another language for writing templates you should integrate one of the PHP templates engines into your symfony project. there are a lot of template engines other than PHPTAL, and there are already symfony plugins for some of them on symfony plugins page (examples are Smarty, XSLT, OPT and Haml)