Symfony Actions 命名空间,还是更好的方法?
在 Rails 中,您可以将控制器组织到文件夹中,并通过命名空间保持结构良好。我正在 Symfony 1.4 中寻找类似的组织结构。
我正在考虑在一个 actions 文件夹中组织多个 actions.class.php 文件,但我遇到的只是使用独立的操作文件,每个操作一个......就像这样:
# fooAction.class.php
class fooAction extends sfActions {
public function executeFoo() {
echo 'foo!';
}
}
但我必须开发一个全新的路由系统为了将多个操作放入该文件中,这是......愚蠢的。
真的,我只是想把 Symfony 变成 Rails,(再次,愚蠢,但我在这个项目中坚持使用 Symfony)所以我想知道是否有更好的方法......?
谢谢。
In Rails, you can organize controllers into folders and keep your structure nice with namespacing. I'm looking for a similar organizational structure in Symfony 1.4.
I was thinking of organizing multiple actions.class.php files in an actions folder, but all I came across was using independent action files, one for each action... like this:
# fooAction.class.php
class fooAction extends sfActions {
public function executeFoo() {
echo 'foo!';
}
}
But I'd have to develop a whole new routing system in order to fit multiple actions into that file, which is... silly.
Really I'm just looking to make Symfony into Rails, (again, silly, but I'm stuck with Symfony for this project) so I'm wondering if there's a better way....?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
symfony 简要介绍 - 章节06:在控制器层内部,替代操作类语法小节
A Gentle Introduction to symfony - chapter 06: Inside the controller layer, subsection Alternative Action Class Syntax