刷新Radiobutton选择

时间:2017-01-17 21:06:58

标签: python button tkinter radio

我使用tkinter创建了一个测验,我遇到了一个小问题。选择第一个问题的答案并单击“提交”后,已从上一个问题中选择相同的单选按钮用于下一个问题。有没有可能刷新页面,以便下一个问题没有选定的答案?

图像显示为第一个问题选择了答案。

The image shows an answer being selected for the first question.

点击提交后,已选择相同的单选按钮选项。

after having clicked submit, the same radio button choice is already selected.

curl -XPUT http:/localhost:9200/_template/template_1 -d '
{
  "template": "*",
  "mappings": {
    "_default_": {
      "dynamic_templates": [
        {
          "strings2": {
            "match_mapping_type": "string",
            "mapping": {
              "type": "text",
              "fielddata": true
            }
          }
        }
      ]
    }
  }
}'

2 个答案:

答案 0 :(得分:0)

使用var.set(0)重置选择。

答案 1 :(得分:0)

您是否在不同的问题页面中使用var作为radiobuttons?您可以将var1用于第1页,将var2用于第2页以避免继续使用。