cherrypy 中的复选框值
我了解 Cherrypy 使复选框值可用作列表 cfg 问题(CherryPy - 将复选框选择保存到变量)
假设我有以下表单数据:
... snip ...
<input type=checkbox id="1">
<input type=checkbox id="1">
<input type=checkbox id="1">
<input type=checkbox id="2">
<input type=checkbox id="2">
<input type=checkbox id="2">
<input type=checkbox id="3">
<input type=checkbox id="3">
<input type=checkbox id="3">
... snip ...
然后 Cherrypy 将其提供为:
{'1': [u'on', u'on', u'on'],'2': [u'on', u'on', u'on'],'3': [u'on', u'on', u'on']}
从我取消选中第二个复选框 id3 的那一刻起,我得到:
{'1': [u'on', u'on', u'on'],'2': [u'on', u'on', u'on'],'3': [u'on', u'on']}
有了这个,我无法说出哪个复选框未选中,... .我可以在未选中复选框时使用“关闭”。但事实并非如此。
有什么想法如何解决这个问题吗?
干杯,
杰伊
I understand that Cherrypy makes checkbox values available as a list cfg question (CherryPy - saving checkboxes selection to variables)
Let's say I have following form data:
... snip ...
<input type=checkbox id="1">
<input type=checkbox id="1">
<input type=checkbox id="1">
<input type=checkbox id="2">
<input type=checkbox id="2">
<input type=checkbox id="2">
<input type=checkbox id="3">
<input type=checkbox id="3">
<input type=checkbox id="3">
... snip ...
Then Cherrypy makes this available as:
{'1': [u'on', u'on', u'on'],'2': [u'on', u'on', u'on'],'3': [u'on', u'on', u'on']}
From the moment I uncheck the second checkbox id3 then I get:
{'1': [u'on', u'on', u'on'],'2': [u'on', u'on', u'on'],'3': [u'on', u'on']}
With this I'm unable to say which checkbox is unchecked, .... I could when 'off' would be used when a checkbox is unchecked.. but that's not the case.
Any ideas how to tackle this?
Cheers,
Jay
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先需要注意的是:HTML 中的“id”属性对于整个文档来说应该是唯一的。
然后,您有两个选择:
,在这种情况下您将返回
{..., '3a': u'on' '3c': u'on'}
,或,在这种情况下你会得到
{..., '3': [u'a', u'c']}
。First a nit: The "id" attribute in HTML is supposed to be unique for the whole document.
You then have two options:
<input type="checkbox" name="3b">
, in which case you'll get back{..., '3a': u'on' '3c': u'on'}
, or<input type="checkbox" name="3" value="b">
, in which case you'll get back{..., '3': [u'a', u'c']}
.