在 Zend_Form 中允许空文件输入
我有一个使用 Zend_Form 完成的简单表单,它从 XML 文件中检索其所有参数。表单有一个文件输入,我也需要允许空提交。我的意思是用户应该有机会将该字段留空。
我尝试了allowEmpty和required指令的各种组合,但没有帮助。下面是生成字段的 XML 块。感谢您的帮助..
<image1Filename type="file">
<options label="Some Input" allowEmpty="true" required="false" destination="images/cups">
<validators>
<Size validator="Size">
<options value="102400"/>
</Size>
<Extension validator="Extension">
<options value="jpg,png,gif"/>
</Extension>
</validators>
</options>
</image1Filename>
I have a simple form accomplished with Zend_Form which is retrieving all its parameters from an XML file. Form has a file input which I need to allow empty submits as well. I mean users should have the chance to leave this field empty.
I tried various combinations of allowEmpty and required directives but no help. Below is the XML block generating the field. Thank you for your help..
<image1Filename type="file">
<options label="Some Input" allowEmpty="true" required="false" destination="images/cups">
<validators>
<Size validator="Size">
<options value="102400"/>
</Size>
<Extension validator="Extension">
<options value="jpg,png,gif"/>
</Extension>
</validators>
</options>
</image1Filename>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该添加:
在
您的示例中,它应该是:
You should add:
inside the
In your example it should be: