我有两个非常相似Fieldset
的 sMyFooFieldset
和MyBarFieldset
. 为了避免代码重复,我创建了一个AbstractMyFieldset
,将整个代码移到那里,并希望处理init()
具体类的方法的差异:
AbstractMyFooFieldset
namespace My\Form\Fieldset;
use Zend\Form\Fieldset;
use Zend\InputFilter\InputFilterProviderInterface;
abstract class AbstractMyFieldset extends Fieldset implements InputFilterProviderInterface
{
public function init()
{
$this->add(
[
'type' => 'multi_checkbox',
'name' => 'my_field',
'options' => [
'label_attributes' => [
'class' => '...'
],
'value_options' => $this->getValueOptions()
]
]);
}
public function getInputFilterSpecification()
{
return [...];
}
protected function getValueOptions()
{
...
return $valueOptions;
}
}
MyFooServerFieldset
namespace My\Form\Fieldset;
use Zend\Form\Fieldset;
class MyFooServerFieldset extends AbstractMyFieldset
{
public function init()
{
parent::init();
$this->get('my_field')->setType('radio'); // There is not method Element#setType(...)! How to do this?
$this->get('my_field')->setAttribute('required', 'required'); // But this works.
}
}
我想type
为元素设置 the 和其他一些配置,例如 thetype
和required
属性。设置属性好像还可以,至少我可以设置required
属性。但我无法设置类型——Element#setType(...)
不存在。
编辑后如何设置type
a ?Zend\Form\Element
add