16

我需要从表单中获取适配器,但仍然无法。

在我的控制器中,我可以使用以下方法恢复适配器:

// module/Users/src/Users/Controller/UsersController.php
public function getUsersTable ()
{
    if (! $this->usersTable) {
        $sm = $this->getServiceLocator();
        $this->usersTable = $sm->get('Users\Model\UsersTable');
    }
    return $this->usersTable;
}

在我的模块中,我这样做了:

// module/Users/Module.php  
public function getServiceConfig()
{
    return array(
            'factories' => array(
                    'Users\Model\UsersTable' =>  function($sm) {
                        $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                        $uTable     = new UsersTable($dbAdapter);
                        return $uTable;
                    },
                    //I need to get this to the list of groups
                    'Users\Model\GroupsTable' =>  function($sm) {
                        $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                        $gTable     = new GroupsTable($dbAdapter);
                        return $gTable;
                    },
            ),
    );
}

有人可以给我一个例子,如何将适配器从组表单中获取到表中?

我已经按照这个例子给我的表单用户: http: //framework.zend.com/manual/2.0/en/modules/zend.form.collections.html

从这里编辑...

也许我表达了自己错误地提出这个问题。

我真正需要做的是用我的表组中的信息填充一个选择(下拉)。

因此,我需要通过实现 ServiceLocatorAwareInterface(请参阅此链接)在我的 userForm 类中获取服务,因为默认情况下,Zend Framework MVC 注册了一个初始化器,它将注入到 ServiceManager 实例中 ServiceLocatorAwareInterface 实现任何类。

从表组中检索值并填充选择后。

问题是在我尝试过的所有方法中,getServiceLocator() 返回:

Call to a member function get() on a non-object in
D:\WEBSERVER\htdocs\Zend2Control\module\Users\src\Users\Form\UsersForm.php
on line 46

我只是想在我的用户窗体中这样做......

namespace Users\Form;

use Zend\ServiceManager\ServiceLocatorAwareInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\Form\Element;
use Zend\Form\Form;

class UsersForm extends Form implements ServiceLocatorAwareInterface
{

    protected $serviceLocator;

    public function getServiceLocator ()
    {
        return $this->serviceLocator;
    }

    public function setServiceLocator (ServiceLocatorInterface $serviceLocator)
    {
        $this->serviceLocator = $serviceLocator;
    }

    public function __construct ($name = null)
    {
        parent::__construct('users');

        $this->setAttribute('method', 'post');        

        $sm = $this->getServiceLocator();

        $groups = $sm->get('Users\Model\GroupsTable')->fetchAll(); // line 46       

        $select = new Element\Select('groups');

        $options = array();

        foreach ($groups as $group) {

            $options[$group->id] = $group->name;
        }

        $select->setValueOptions($options);

        $this->add($select);

        // and more elements here...
4

6 回答 6

8

对于 ZF < 2.1,此处的其他各种答案通常是正确的。

一旦 2.1 出来了,这个框架就有了一个很好的解决方案。这或多或少形式化了 DrBeza 的解决方案,即:使用初始化程序,然后将任何表单引导移动到在所有依赖项都已初始化后调用的 init() 方法中。

我一直在玩开发分支,它工作得很好。

于 2013-01-17T00:01:08.003 回答
6

这是我用来解决这个问题的方法。

首先,你想让你的表单像你所做的那样实现 ServiceLocatorInterface。

然后,您仍然需要手动注入服务定位器,并且由于整个表单是在构造函数内部生成的,因此您也需要通过构造函数进行注入(尽管在构造函数中构建它并不理想)

模块.php

/**
 * Get the service Config
 * 
 * @return array 
 */
public function getServiceConfig()
{
    return array(
        'factories' => array(
            /**
             * Inject ServiceLocator into our Form
             */
            'MyModule\Form\MyForm' =>  function($sm) {
                $form = new \MyModule\Form\MyFormForm('formname', $sm);
                //$form->setServiceLocator($sm);

                // Alternativly you can inject the adapter/gateway directly
                // just add a setter on your form object...
                //$form->setAdapter($sm->get('Users\Model\GroupsTable')); 

                return $form;
            },
        ),
    );
}

现在在您的控制器中,您将获得如下形式:

// Service locator now injected
$form = $this->getServiceLocator()->get('MyModule\Form\MyForm');

现在您将可以访问表单内的完整服务定位器,以获取任何其他服务等,例如:

$groups = $this->getServiceLocator()->get('Users\Model\GroupsTable')->fetchAll();
于 2012-11-28T12:35:20.420 回答
1

在 module.php 中,我创建了两个服务。看看我如何将适配器提供给表单。

public function getServiceConfig()
{
    return array(
        'factories' => array(
            'db_adapter' =>  function($sm) {
                $config = $sm->get('Configuration');
                $dbAdapter = new \Zend\Db\Adapter\Adapter($config['db']);
                return $dbAdapter;
            },

            'my_amazing_form' => function ($sm) {
                return new \dir\Form\SomeForm($sm->get('db_adapter'));
            },

        ),
    );
}

在表单代码中,我将该提要用于任何内容:

namespace ....\Form;

use Zend\Form\Factory as FormFactory;
use Zend\Form\Form;

class SomeForm extends Form
{

    public function __construct($adapter, $name = null)
    {
        parent::__construct($name);
        $factory = new FormFactory();

        if (null === $name) {
            $this->setName('whatever');
        }

    }
}
于 2012-09-18T12:51:47.943 回答
0

这是我用来解决这个问题的方法。

首先,在 Module.php 中,创建服务(就像您所做的那样):

// module/Users/Module.php  
public function getServiceConfig()
{
    return array(
            'factories' => array(
                    'Users\Model\UsersTable' =>  function($sm) {
                        $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                        $uTable     = new UsersTable($dbAdapter);
                        return $uTable;
                    },
                    //I need to get this to the list of groups
                    'Users\Model\GroupsTable' =>  function($sm) {
                        $dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
                        $gTable     = new GroupsTable($dbAdapter);
                        return $gTable;
                    },
            ),
    );
}

然后在控制器中,我得到了对服务的引用:

$users = $this->getServiceLocator()->get('Test\Model\TestGroupTable')->fetchAll();
        $options = array();
        foreach ($users as $user)
           $options[$user->id] = $user->name;
        //get the form element
        $form->get('user_id')->setValueOptions($options);

还有中提琴,那工作。

于 2014-01-20T11:04:16.410 回答
0

其他答案的另一种方法是创建一个 ServiceManager Initializer。

如果您的实例实现了 ServiceLocatorAwareInterface,则现有 Initializer 的一个示例是如何注入 ServiceManager。

想法是创建一个您在 Initialiser 中检查的接口,该接口可能如下所示:

interface FormServiceAwareInterface
{
    public function init();
    public function setServiceManager(ServiceManager $serviceManager);
}

您的初始化程序可能看起来像的示例:

class FormInitializer implements InitializerInterface
{
    public function initialize($instance, ServiceLocatorInterface $serviceLocator)
    {
        if (!$instance instanceof FormServiceAwareInterface)
        {
            return;
        }

        $instance->setServiceManager($serviceLocator);
        $instance->init();
    }
}

发生的任何事情init()都可以访问ServiceManager. 当然,您需要将初始化程序添加到您的 SM 配置中。

它并不完美,但可以很好地满足我的需求,也可以应用于从 ServiceManager 中提取的任何字段集。

于 2012-11-28T15:59:38.200 回答
0

我们在模型中处理这个问题,通过添加一个接受表单的方法

public function buildFormSelectOptions($form, $context = null)
{
    /** 
     * Do this this for each form element that needs options added
     */
    $model = $this->getServiceManager()->get('modelProject');

    if (empty($context)){
        $optionRecords = $model->findAll();
    } else {
        /**
         * other logic for $optionRecords
         */
    }

    $options = array('value'=>'', 'label'=>'Choose a Project');
    foreach ($optionRecords as $option) {
        $options[] = array('value'=>$option->getId(), 'label'=>$option->getName());
    }

    $form->get('project')->setAttribute('options', $options);
}

由于表单是通过引用传递的,我们可以在构建表单的控制器中执行以下操作:

    $builder = new AnnotationBuilder();
    $form = $builder->createForm($myEntity);
    $myModel->buildFormSelectOptions($form, $myEntity);

    $form->add(array(
        'name' => 'submitbutton',
        'attributes' => array(
            'type'  => 'submit',
            'value' => 'Submit',
            'id' => 'submitbutton',
        ),
    ));

    $form->add(array(
        'name' => 'cancel',
        'attributes' => array(
            'type'  => 'submit',
            'value' => 'Cancel',
            'id' => 'cancel',
        ),
    ));

注意:该示例假定基本表单是通过注释构建的,但您如何创建初始表单并不重要。

于 2012-11-10T21:39:10.720 回答