Python 金字塔 - 如何使用复选框和单选按钮
我一直在尝试使用金字塔框架制作带有复选框和单选按钮的表单,但我不知道如何正确执行。
我正在使用pyramid_simpleform
。到目前为止,我已经能够使用 for 循环将复选框放在表单上,但即使我指定 checked=True
也无法选中任何复选框。
% for item in groups:
${form.checkbox(name="groups",label=item, value=item, checked=True)}
% endfor
我知道有更好的方法可以做到这一点。有没有什么例子我可以看一下。金字塔文档中的所有示例都是简单的文本字段。到目前为止我没有找到任何单选按钮或复选框。
I've been trying to make a form with checkboxes and radio button using Pyramid framework but I can't figure out how to do it properly.
I'm using the pyramid_simpleform
. So far I've been able to put my checkboxes on the form using a for loop but I can't make any checkbox checked even if I specify checked=True
.
% for item in groups:
${form.checkbox(name="groups",label=item, value=item, checked=True)}
% endfor
I know there's a better way of doing this. Is there any examples I could look at. All the examples in pyramid's documentation are simple text fields. I didn't find any radio button or checkboxes so far.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过将
defaults={"groups" : True}
放入 Form ctor 中,例如(在金字塔_simpleform 文档中):
form = Form(request, MySchema, defaults={"name" : “foo”})
Have you tried put
defaults={"groups" : True}
in Form ctor, for example (in pyramid_simpleform doc):
form = Form(request, MySchema, defaults={"name" : "foo"})
我使用 FormRenderers 输出表单,并且在使用复选框时也遇到问题。因此,我编写了以下类,在我的所有视图中替换 simple_form 中的 FormRenderer:
I use FormRenderers to output forms and also had problems using Checkboxes. So I wrote the following class that replaces the FormRenderer from simple_form in all my views: