Zend_Dojo_Form在布局中

时间:2010-09-30 10:11:45

标签: zend-framework dojo zend-layout

我有一个Zend_Dojo_Form,我从我的视图(它工作正常)移动到我的布局,因为它是在每个页面上都有用的东西。但是在布局中,表单不再有效 - 没有任何dijit元素出现,它的行为就像普通的HTML表单一样。

这是我的引导程序的相关部分:

protected function _initView()
{
    Zend_Layout::startMvc(array(
        'layoutPath' => '../application/layouts',
        'layout' => 'default'
    ));

    $view = new Zend_View();
    $view->setEncoding('UTF-8')
         ->doctype('HTML5');

    // init Dojo
    Zend_Dojo::enableView($view);
    $view->dojo()->enable()
                 ->setCdnVersion('1.5')
                 ->requireModule('dojo.data.ItemFileWriteStore')
                 [...]
                 ->addStyleSheetModule('dijit.themes.tundra');

    // assign the view to the viewRenderer, so it will be used by the MVC actions
    $viewRenderer = Zend_Controller_Action_HelperBroker::getStaticHelper('ViewRenderer');
    $viewRenderer->setView($view);

    return $view;
}

没有错误(JS或ZF),表单不能正常工作。

我假设我需要Dojo以某种方式启用Layout视图。我尝试将上面的bootstrap方法的布局部分更改为:

$layout = Zend_Layout::startMvc(array(
    'layoutPath' => '../application/layouts',
    'layout' => 'default'
));
$view = $layout->getView();
Zend_Dojo::enableView($view);
$layout->setView($view);

但这没有任何区别。

我发现this question听起来与我的问题非常相似,但接受的答案只是在布局中显示了dojo助手,我已经在做了。

1 个答案:

答案 0 :(得分:4)

这很可能是因为您具有文档中建议的布局:

  <?php echo $this->doctype() ?>
  <html>
  <head>
      <?php echo $this->headTitle() ?>
      <?php echo $this->headMeta() ?>
      <?php echo $this->headLink() ?>
      <?php echo $this->headStyle() ?>
  <?php if ($this->dojo()->isEnabled()){
      $this->dojo()->setLocalPath('/js/dojo/dojo.js')
                   ->addStyleSheetModule('dijit.themes.tundra');
      echo $this->dojo();
     }
  ?>
      <?php echo $this->headScript() ?>
  </head>
  <body class="tundra">
      <?php echo $this->layout()->content ?>
      <?php echo $this->inlineScript() ?>
  </body>
  </html>

问题是 echo $ this-&gt; dojo()必须在$ this-&gt; form-&gt; render()之后,否则所需的模块将不会在Zend_Dojo的。