我需要从表单中获取适配器,但仍然无法。
在我的控制器中,我可以使用以下方法恢复适配器:
// 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...