我一直在处理的一组表单(使用 Zend_Form)让我有些头疼,试图找出我的 XML 配置出了什么问题,因为我不断收到特定 INPUT 元素的意外 HTML 输出。它应该得到一个默认值,但什么也没出现。
在用于实例化 Zend_Form 时,以下 2 段 XML 似乎不相等:
片段#1:
<form>
<elements>
<test type="hidden">
<options ignore="true" value="foo"/>
</test>
</elements>
</form>
片段#2:
<form>
<elements>
<test type="hidden">
<options ignore="true">
<value>foo</value>
</options>
</test>
</elements>
</form>
元素的类型似乎没有区别,因此它似乎与隐藏字段无关。
这是预期的还是不预期的?