在我的应用程序中,我想以name="inputname[]
的方式使用serval输入。
这是因为我有一个表单可以在父级上添加多个子名称。我想知道ZF2如何使用这个程序?
答案 0 :(得分:0)
我猜你在谈论表单集。关于馆藏有很多文献。
http://framework.zend.com/manual/current/en/modules/zend.form.collections.html
或@venca提出的链接
http://zf2.readthedocs.org/en/latest/modules/zend.form.collections.html
如果您在问题中更具体,那么答案也可以更具体。
为了验证父母内部的集合,我可以参考my answer on another question here。
这很简单:
'children' => array(
'required' => true,
'count' => ... optional count ...
'input_filter' => ... input filter or input filter config to use for each element ...
'type' => 'Zend\InputFilter\CollectionInputFilter',
),