11

我正在构建一个基于 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?

4

2 回答 2

12

如果你有大量类似的控件——最好的方法是为它们使用循环。假设我们使用 list 来存储所有按钮名称,以及其他活跃的按钮列表。这会给我们一些控制器:

from flask import render_template

@app.route('/form/')
def hello(name=None):
    return render_template('hello.html', buttons=['A', 'B', 'C'], active_btns=['A', 'C'])

所以,在模板中,我们会有类似的东西:

<div id="radios1" class="btn-group view-opt-btn-group" data-toggle="buttons-radio">
{% for button in buttons %}
    {% if button in active_btns %}
        <button type="button" class="btn active" name="choice1" value="{{ button }}">{{ button }}</button>
    {% else %}
        <button type="button" class="btn" name="choice1" value="{{ button }}">{{ button }}</button>
    {% endif %}
{% endfor %}
</div>

实际上,使用 Jinja 的 If 表达式可以简化 for 循环中的表达式,应该如下所示:

<button type="button" class="btn{{" active" if button in active_btns}}" name="choice1" value="{{ button }}">{{ button }}</button>

但我现在没有 Jinja2,而且语法可能有误。

如果我没有正确回答您的问题-请写一些评论,我会尝试更新我的答案:)

于 2013-04-11T18:08:06.657 回答
9

至于设置活动框,我不确定你的意思,但按钮标签属性autofocus可能会有所帮助。最初将这些字段留空可能是个好主意。

您可以使用以下 Flask 代码在不使用 JavaScript 的情况下将选定的框传递给 Flask(您的 HTML 当前已正确设置为在按下提交按钮时将请求传递给 Flask):

from flask import Flask, render_template, request

@app.route("/", methods = ["GET", "POST"])
def home():
    if request.method == "POST":

        button = request.form['choice1'] #this retrieves which radio button was pressed

        if button == 'A': #if the button with attribute value = "A' is pressed
            #what you want to do when button A is pressed
        elif button == 'B':
            #what you want to do when button B is pressed
        elif button == 'C':
            #what you want to do when button C is pressed
        elif button == 'D':
            #what you want to do when button D is pressed
        elif button == 'E':
            #what you want to do when button E is pressed
    return render_template("home.html")
于 2013-04-14T06:34:09.567 回答