当与显示组一起显示时,Zend_Form 提交停止工作
我的 Zend_Form 只有两个元素:文本和提交。
当我渲染整个表单时,一切正常。
echo $this->form;
当我逐部分渲染表单时,它会被渲染,但提交按钮不会触发任何内容。
echo $this->form->range;
echo $this->form->submit;
使用显示组进行渲染也会使提交按钮失效。
有什么想法吗?
提前致谢!
My Zend_Form has only two elements, text and submit.
When I render the Form as whole, everything works fine.
echo $this->form;
When I render the Form part by part, it gets rendered, but the submit button triggers nothing.
echo $this->form->range;
echo $this->form->submit;
Rendering wiht display groups also leaves the submit button dead.
Any ideas?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您回显表单对象时,它的神奇函数 __toString() 被调用,该函数输出由默认注册的装饰器生成的 html。其中包括“”html标签。它包装了从 . 添加到 zend 的所有元素。因此,如果您要回显单个元素,则需要手动将元素包装在 html 表单标记内。
When you echo form object its magic function __toString() gets called which outputs the html generated by default registered decorators . Which includes "" html tag . Which wraps up all the elements added to the zend from . So if you are echoing individual elements you need to manually wrap elements inside html form tag .