I don t really know how to word the title well, but here s my issue. I decided instead of having 25 controllers to handle pages, I have one PageController
with a viewAction
that takes in a :page
parameter - for example, http://localhost/website/page/about-us
would direct to PageController::viewAction()
with a parameter of page = about-us
. All of the pages are stored in a templates folder, so the viewrenderer is set to render application emplatesdefaultabout-us.phtml
.
我这样做是能够巩固的,似乎是一种更好的办法。 我的问题是:如果要求页数为contact-us
,我需要一个Zend_Form
,以便在联系页内使用。 因此,我需要在<代码>PageController:viewAction()中找到一种形式,建立形式,并在提交材料的基础上处理需要(或许应该以抽象的过程方法处理,而不是确定)。
我不知道如何执行。 我认为,我可以储存一栏,其名称为表格和连接页识别码。 更糟的是,建立一个单向一页的表格,然后,如果提交,则通过表格和核对表填写,然后处理(可能的话,在表格中采用<代码>>。 我确实不知道如何处理这一问题,并且正在寻求能够得到的任何帮助。
感谢!