cherrypy 中的复选框值

发布于 2024-11-05 14:45:48 字数 939 浏览 0 评论 0原文

我了解 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪异←思 2024-11-12 14:45:48

首先需要注意的是:HTML 中的“id”属性对于整个文档来说应该是唯一的。

然后,您有两个选择:

  1. 将“name”属性更改为唯一,例如 ,在这种情况下您将返回 {..., '3a': u'on' '3c': u'on'},或
  2. 使值唯一,例如 ,在这种情况下你会得到{..., '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:

  1. Change the "name" attributes to be unique, like <input type="checkbox" name="3b">, in which case you'll get back {..., '3a': u'on' '3c': u'on'}, or
  2. Make the values unique, like <input type="checkbox" name="3" value="b">, in which case you'll get back {..., '3': [u'a', u'c']}.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文