如何使用WTForms从模型列表创建表单?

时间:2014-06-03 15:06:28

标签: python flask jinja2 wtforms flask-wtforms

我有一个Prediction模型列表。我想将它们绑定到表单并允许使用回发。我如何构建我的表单,以便帖子将Home / Away分数与Prediction模型的id字段相关联,以便我绑定到表单的每个项目?

查看

@app.route('/predictor/',methods=['GET','POST'])
@login_required
def predictions():    
    user_id = g.user.id
    prediction= # retrieve prediction
    if request.method == 'POST':
        if form.validate() == False:
            flash('A score is missing, please fill in all predictions')
            render_template('predictor.html', prediction=prediction, form=form)
        else:
            for pred in prediction:
                # store my prediction
            flash('Prediction added')
            return redirect(url_for("predictions"))    
    # display current predictions
    elif request.method == 'GET':
        return render_template('predictor.html', prediction=prediction, form=form)

形式

class PredictionForm(WTForm):
    id = fields.IntegerField(validators=[validators.required()], widget=HiddenInput())
    home_score = fields.TextField(validators=[validators.required()])
    away_score = fields.TextField(validators=[validators.required()])

模板

  <form action="" method="post">
    {{form.hidden_tag()}}
    <table>
        {% for pred in prediction %}
        <tr>
            <td>{{pred.id}}</td>
            <td>{{form.home_score(size=1)}}</td>
            <td>{{form.away_score(size=1)}}</td>               
        </tr>
        {% endfor %}
    </table>
    <p><input type="submit" value="Submit Predictions"></p>
   </form>

我无法在POST上正确绑定我的数据。所需的验证程序不断失败,因为发布数据缺少所有必需字段。

2 个答案:

答案 0 :(得分:6)

您需要一个子表单,该子表单将绑定到预测列表中的项目:

您描述的表单只允许您提交单个预测。似乎存在差异,因为您绑定了一个可迭代的预测,并且看起来您想要对每个预测进行归位和远离预测。事实上,它永远不会发回id字段。这将始终导致您失败的表单验证。我想你想要的是一个子表单列表。像这样:

# Flask's form inherits from wtforms.ext.SecureForm by default
# this is the WTForm base form. 
From wtforms import Form as WTForm

# Never render this form publicly because it won't have a csrf_token
class PredictionForm(WTForm):
    id = fields.IntegerField(validators=[validators.required()], widget=HiddenInput())
    home_score = fields.TextField(validators=[validators.required()])
    away_score = fields.TextField(validators=[validators.required()])

class PredictionListForm(Form):
    predictions = FieldList(FormField(PredictionForm))

您的观点需要返回以下内容:

predictions = # get your iterable of predictions from the database
from werkzeug.datastructures import MultiDict
data = {'predictions': predictions}
form = PredictionListForm(data=MultiDict(data))

return render_template('predictor.html', form=form)

您的表单需要更改为更像这样的内容:

<form action='my-action' method='post'>
    {{ form.hidden_tag() }}
    {{ form.predictions() }}
</form>

现在这将打印一个<ul>,每个项目<li>,因为这就是FieldList的作用。我会把它放在你的风格上,然后把它变成表格形式。这可能有点棘手,但并非不可能。

在POST a上,您将获得一个formdata字典,其中包含每个预测id的主页和客场分数。然后,您可以将这些预测绑定回 SQLAlchemy 模型。

[{'id': 1, 'home': 7, 'away': 2}, {'id': 2, 'home': 3, 'away': 12}]

答案 1 :(得分:0)

 {% for key in di_RAA %}
   <tr>
   <td><form id="Run" action="{{ url_for('index') }}" method="post">
        <input type="submit" class="btn" value="TEST" name="RUN_{{key}}"> 
   </form></td>
   </tr>
 {% endfor %}

它为多个按钮提供了其他简单的解决方案。 FieldList很好,很难获得每个按钮的名称和触发功能。