duangua6912 2016-02-22 22:51
浏览 45
已采纳

如何在我的PHP应用程序中使用ZF2表单作为独立模块?

Looking at any kind of basic example on ZF2 forms, I have something like this:

In Controller (any basic tutorial example)

    $username = new Element\Text('username');
    $username->setLabel('Username')->setAttributes(array(
        'class' => 'username',
        'size' => '30'
    ));

    $form = new Form('my-form');
    $form->add($username);
    return $this->partial("xxx.phtml", array(
        'form' => $form
    ));

In View

/**
 * inside view template
 *
 * @var \Zend\View\Renderer\PhpRenderer $this
 */
echo $this->form($this->form);

Error I get

PHP Fatal error:  Uncaught exception 'Zend\ServiceManager\Exception\ServiceNotFoundException' with message 'Zend\View\HelperPluginManager::get was unable to fetch or create an instance for form' in vendor\zendframework\zend-servicemanager\src\ServiceManager.php:557
Stack trace:
#0 vendor\zendframework\zend-servicemanager\src\AbstractPluginManager.php(161): Zend\ServiceManager\ServiceManager->get('form', true)
#1 vendor\zendframework\zend-view\src\Renderer\PhpRenderer.php(372): Zend\ServiceManager\AbstractPluginManager->get('form', NULL)
#2 vendor\zendframework\zend-view\src\Renderer\PhpRenderer.php(390): Zend\View\Renderer\PhpRenderer->plugin('form')
#3 module\XXX\view\xxx\xxx.phtml(8): Zend\View\Renderer in vendor\zendframework\zend-servicemanager\src\ServiceManager.php on line 557

I suspect that some fundamental plugin is not set up. Perhaps even the service that must register the plugin is not set up (ServiceManager)

What can I do to get ZF2 forms working in my otherwisely non-ZF2 app?

My intent is to use ZF2 form component to build forms, and to use them in my php application.

  • 写回答

1条回答 默认 最新

  • dtgv52982 2016-02-23 03:28
    关注

    As you are not using the full application, the ViewPluginManager will not be provided with the names of the form view helpers by default; as they live the Zend\Form\View namespace.

    You can easily register the missing services with a few lines best placed in your 'render factory' if you have one.

    $viewPluginManager = $render->getHelperPluginManager();
    
    $formConfig = new \Zend\Form\View\HelperConfig();
    $formConfig->configureServiceManager($viewPluginManager);
    
    echo $render->form($this->form);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵