1

这是ZF 手册_init中的方法示例。最后有命令:Zend_Bootstrapreturn

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initView()
    {
        // Initialize view
        $view = new Zend_View();
        $view->doctype('XHTML1_STRICT');
        $view->headTitle('My First Zend Framework Application');

        // Add it to the ViewRenderer
        $viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper(
            'ViewRenderer'
        );
        $viewRenderer->setView($view);

        // Return it, so that it can be stored by the bootstrap
        return $view;    // Why return is here?
    }
}

可以由引导程序存储

为什么要回来?引导程序将其存储在哪里,为什么?什么对象调用这个方法,谁得到结果?如果不返回会发生什么?

更新:

在可用资源插件页面的关于部分中View,它们显示了以下启动方式Zend_View

配置选项是每个Zend_View 选项

Example #22 示例视图资源配置

下面是一个示例 INI 片段,展示了如何配置视图资源。

resources.view .encoding = "UTF-8"

resources.view .basePath = APPLICATION_PATH "/views/"

Viewapplication.ini文件以及他们在 Zend_Application 快速入门页面中编写的所有其他资源开始这种方式似乎既方便又合理。但同时在同一个 Zend_Application 快速启动页面上,他们说View必须从以下位置启动Bootstrap

现在,我们将添加一个自定义视图资源。初始化视图时,我们需要设置 HTML DocType 和标题的默认值,以便在 HTML 头部中使用。这可以通过编辑 Bootstrap 类来添加一个方法来完成:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initView()
    {
        // Initialize view
        $view = new Zend_View();
        $view->doctype('XHTML1_STRICT');     // the same operations, I can set this in application.ini
        $view->headTitle('My First Zend Framework Application');   // and this too

        // Add it to the ViewRenderer
        $viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper(
            'ViewRenderer'
        );
        $viewRenderer->setView($view);

        // Return it, so that it can be stored by the bootstrap
        return $view;
    }
}

并且事件与其他资源更有趣,Request例如这里

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initRequest()
    {
        // Ensure the front controller is initialized

        $this->bootstrap('FrontController');   // why to initialized FC here if it is going to be initialized in application.ini anyway like resource.frontController.etc?

        // Retrieve the front controller from the bootstrap registry
        $front = $this->getResource('FrontController');

        $request = new Zend_Controller_Request_Http();
        $request->setBaseUrl('/foo');
        $front->setRequest($request);

        // Ensure the request is stored in the bootstrap registry
        return $request;
    }
}

因此,他们似乎提供了以这种或那种方式启动资源的选择。但是哪一个是正确的呢?为什么他们混合它们?哪个更好用?

事实上,我可以FC从我的以下内容中删除所有这些行application.ini

resources.frontController.baseUrl = // some base url
resources.frontController.defaultModule = "Default"
resources.frontController.params.displayExceptions = 1

并像这样重写它:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
    {
        protected function _initFrontController()
        {

            $this->bootstrap('FrontController');
            $front = $this->getResource('FrontController');
            $front->set ...  
            $front->set ...   // and here I set all necessary options

            return $front;
        }
    }

application.iniway 和way 和有什么不一样_initResource?这种差异是否意味着工作中的严重问题?

4

1 回答 1

1

尽管经过一段时间阅读 zend 手册后您会得到答案。不过我会尽量回答你的问题。

1.为什么要退货?

虽然没有必要返回也不是强制性的。返回只用于将
变量存储在 zend 容器中,通常是 Zend 注册表。这个存储的变量可以由你在任何需要的地方访问。如果你不' t return 它会产生的唯一区别是您将无法在任何地方获取变量。在编写答案时在zend手册上找到以下内容。它肯定会有所帮助。

例如,考虑一个基本视图资源:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initView()
    {
        $view = new Zend_View();
        // more initialization...

        return $view;
    }
}
You can then check for it and/or fetch it as follows:

// Using the has/getResource() pair:
if ($bootstrap->hasResource('view')) {
    $view = $bootstrap->getResource('view');
}

// Via the container:
$container = $bootstrap->getContainer();
if (isset($container->view)) {
    $view = $container->view;
}

2.引导程序将其存储在哪里,为什么?

我认为第一个回答了这个问题。

3.什么对象调用这个方法,谁得到结果?

Application 对象通常(在最开始时)调用引导程序,您也可以通过该对象调用各个资源方法。但是如果您在调用引导方法时没有指定任何参数,所有资源方法(例如 _initView()、_initRouters())都将被执行。

4.如果不返回会怎样。

我认为由 1 回答。

这几乎包含了您正在寻找的所有答案。 http://framework.zend.com/manual/1.12/en/zend.application.theory-of-operation.html

希望能帮助到你。

更新:

看到你的更新..实际上我认为这是一个选择问题。

您想在哪里定义资源取决于您。

一直在从事一个项目,其中仅在 application.ini 文件中定义了基本资源,并且大部分资源都是从引导程序加载的...

再次是您的选择,但是在使用引导程序加载资源时您会感到舒适和灵活。(例如,定义自定义路线等)。

这就是我的感觉。

于 2012-10-16T02:32:15.603 回答