更新:在Zend Framework中管理静态内容的最佳实践?

时间:2012-01-20 18:59:59

标签: php zend-framework

我对Zend Framework有一些疑问。我正在尝试使用现在默认的displayAction()方法通过默认控制器路由所有静态页面。目的是让displayAction()通过查看page参数来处理请求,确定脚本页面是否存在,如果它确实呈现视图,否则抛出404页面未找到错误。另外,进行测试以查看是否存在与param同名的方法,如果存在,则调用该操作。

此处列出的是 application.ini

中的路由配置
resources.router.routes.static-pages.route = /:page
resources.router.routes.static-pages.defaults.module = default
resources.router.routes.static-pages.defaults.controller = index
resources.router.routes.static-pages.defaults.action = display

以下是控制器操作:

public function someAction() {
    // do something
}

public function displayAction() {  
    // extract page param, e.g. 'some'      
    $page = $this->getRequest()->getParam('page');

    // create zend styled action method, e.g. 'someAction'
    $page_action = $page.'Action';

    // if a method within this controller exists, call on it
    if (method_exists($this, $page_action)) {
        $this->$page_action();
    }

    // if nothing was passed in page param, set to 'home'
    if (empty($page)) {
        $page = 'home';
    }

    // if script exists, render, otherwise, throw exception.
    if (file_exists($this->view->getScriptPath(null)."/".$this->getRequest()->getControllerName()."/$page.".$this->viewSuffix)) {
        $this->render($page);
    } else {
        throw new Zend_Controller_Action_Exception('Page not found', 404);
    }
}

现在,我的问题是:有更好的方法吗?我对这个框架比较新,那么有适用的最佳实践吗?是否有更好的方法从控制器内调用操作?我已经完成了大量的文档浏览,然而,相当多的它似乎与自己相矛盾。

更新1:

经过思考和阅读后,我设法简化了解决方案并包含了一些提到的内容。注意:我使用PagesController作为我的默认静态内容控制器。

此处列出的是application.ini中的路由配置。对于主页的呼叫,即" /",我通过" home"作为action参数,对于所有其他请求,用户定义的/ url链接参数将在action中发送。

resources.router.routes.home.route = "/"
resources.router.routes.home.defaults.module = "default"
resources.router.routes.home.defaults.controller = "pages"
resources.router.routes.home.defaults.action = "home"
resources.router.routes.pages.route = "/:action"
resources.router.routes.pages.defaults.module = "default"
resources.router.routes.pages.defaults.controller = "pages"

这是控制器动作。如果用户定义参数作为动作存在,它将被调用,否则它将落入php魔术函数__call。

public function someAction()
{
    // Do something
}

public function __call($method, $args)
{
    // extract action param, e.g. "home"
    $page = $title = $this->getRequest()->getParam('action'); 

    // test if script exists
    if (file_exists($this->view->getScriptPath(null) . "/" 
        . $this->getRequest()->getControllerName() . "/$page . " . $this->viewSuffix)) 
   {
        // pass title to layout
        $this->view->assign(compact('title'));
        // render script
        $this->render($page);
    } else {
        throw new Zend_Controller_Action_Exception('Page not found', 404);
    }
}

有效。所以,我的问题是:您是否考虑使用此方法标准化来管理静态内容?如果没有,为什么不呢?你会如何改进它?另外,考虑到这是一个GET请求,使用Zend_Filter_input清理输入是一个明智的举动还是只是矫枉过正?

2 个答案:

答案 0 :(得分:1)

你的方法对我来说似乎是合理的。但是,也许您应该利用__call方法,这样可以更轻松地路由您的操作......

像这样设置你的路线:

resources.router.routes.static-pages.route = /:action
resources.router.routes.static-pages.defaults.module = default
resources.router.routes.static-pages.defaults.controller = index

你的控制器是这样的:

public function someAction() {
    //going to URL /some will now go into this method
}

public function __call($name, $args) {
    //all URLs which don't have a matching action method will go to this one
}

答案 1 :(得分:1)

我认为你在正确的轨道上有一些其他想法。

分解INI中每个部分的路由: 即博客路由器,静态页面路由器,论坛路由器等。(我想你已经这样做了)

使用各种路由器类来处理每个部分的路由,而不是将其发送到控制器。

<强>静态: http://framework.zend.com/manual/en/zend.controller.router.html#zend.controller.router.routes.static

所有 http://framework.zend.com/manual/en/zend.controller.router.html

一些可能有用的链接:

  • codeutopia.net/blog/2007/11/16/routing-and-complex-urls-in-zend-framework /
  • www.vayanis.com/2009/03/20/intro-to-zend-framework-routing /