在ZF2中,我有一个自定义表单元素工厂。它会创建自定义MultiCheckbox
并填充db查询中的复选框值和标签。
class MyMultiCheckboxFactory
{
public function __invoke(FormElementManager $formElementManager)
{
$multiCheck = new \Zend\Form\Element\MultiCheckbox();
$serviceManager = $formElementManager->getServiceLocator();
$mapper = $serviceManager->get('Path\To\Mapper\To\Query\DB');
$descriptions = $mapper->findDescriptions($id);
// some processing to prepare $value_options array
$multiCheck->setOptions([
'label' => 'blah-blah',
'value_options' => $value_options
]);
return $multiCheck;
}
}
我的问题如下。方法findDescriptions($id)
取决于我可以从路线获得的$id
。但是当我在这样的形式中使用MyMultiCheckbox
时:
public function init()
{
$this->add([
'type' => 'Path\To\MyMultiCheckbox',
'name' => 'someName'
]);
}
我不知道如何将$id
传递给MyMultiCheckbox
。
有人可以帮助pleeeeeeeeeease吗?
答案 0 :(得分:1)
您可以通过工厂内的“路线匹配”实例获取ID。
$event = $serviceManager->get('Application')->getMvcEvent();
$id = $event->getRouteMatch()->getParam('id', false);
if (empty($id)) {
throw new ServiceNotCreatedException('id not set!');
}
$descriptions = $mapper->findDescriptions($id);