我正在构建一个基于 Web 的仪表板,我想使用Twitter Bootstrap中的单选按钮来帮助创建查询,然后对MongoDB运行(通过Flask),然后用新填充的数据刷新同一页面。我是构建基于 Web 的仪表板的新手,所以如果有更好的方法,请告诉我。
{% extends "base.html" %}
{% block content %}
<div class="row">
<div class="span4 offset4">
<div class="well">
<legend>Click me!</legend>
<form method="POST" action="" accept-charset="UTF-8">
{% if error %}
<div class="alert alert-error">
<a class="close" data-dismiss="alert" href="#">x</a>{{ error }}
</div>
{% endif %}
<div id="radios1" class="btn-group view-opt-btn-group" data-toggle="buttons-radio">
<button type="button" class="btn active" name="choice1" value="A">A</button>
<button type="button" class="btn" name="choice1" value="B">B</button>
<button type="button" class="btn" name="choice1" value="C">C</button>
<button type="button" class="btn" name="choice1" value="D">D</button>
<button type="button" class="btn" name="choice1" value="E">E</button>
<input type="hidden" name="choice1" value={{request.form['choice1']}} />
</div>
<script type="text/jscript">
$("body").find("#radios1").children().each(function () {
$(this).bind('click', function () {
$("input[name=choice1]").val(this.value);
});
});
</script>
<button class="btn-info btn" input type="submit">Submit</button>
</form>
</div>
</div>
</div>
{% endblock %}
这会生成单选按钮并使用 JavaScript 代码来检测单击了哪个按钮,然后通过request.Form
对象将该数据发送回以进行处理。
屏幕更新后,如何在每个按钮栏上设置活动框?我是否必须编写某种{{if request.option1 == ?}}
块来class="btn active"
为每个按钮定义,还是有更聪明(或更明显)的方式来做到这一点?另外,如何设置默认值/初始化条件?我应该预先填充请求对象中的相应字段吗?
另外,是否可以在不使用上面的 JavaScript 代码的情况下将选定的框传递给 Flask?