Bottlepy / Flask - 如何设置复选框?

时间:2017-01-05 11:22:07

标签: python checkbox bottle

我正在尝试设置一个复选框,如果在过去的模板中选中它。 换句话说,如果用户选中复选框并单击提交按钮,他应该能够看到他检查了哪些选项。 我的代码是这样的:

if request.GET.get('submit', '').strip():
    checkbox = request.GET.get('box1')
    return template('my_template.j2', box1 = checkbox)

我该怎么做?

2 个答案:

答案 0 :(得分:4)

在模板文件中,您可以添加以下内容:

<input type="checkbox" name="box1" value="box1" {{'checked="checked"' if box1 else ""}}/>

您可以使用传递到花括号内的模板的python对象,您可以在documentation for inline expressions中找到更多信息。

答案 1 :(得分:0)

这也有效:

<input type="checkbox" name="box1" value="box1" {{ "checked" if box1 else "" }}/>