フォームからアダプタを取得する必要がありますが、それでも取得できませんでした。
私のコントローラーでは、次を使用してアダプターを回復できます。
// 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任意のクラスを実装します。
テーブルグループから値を取得した後、selectにデータを入力します。
問題は、私が試したすべての方法の中で、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...