本文介绍了龙卷风和WTForms的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是第一次使用WTForms.使用WTForms验证Tornado中的POST请求以下是我的表格forms.py

I am using WTForms for the first time.Using WTForms to validate POST requests in TornadoBelow is my formsforms.py

class UserForm(Form):
    user = TextField('user', [validators.Length(min=23, max=23)])

我在tonado处理程序中

In the tonado handler I have

def post(self):
    form = UserForm(self.request.body)

我收到的错误消息是:formdata应该是支持"getlist"方法的multidict类型包装器.

The error message i get is:formdata should be a multidict-type wrapper that supports the 'getlist' method"

我怎么做这项工作?

推荐答案

wtforms-tornado 0.0.1

Tornado的WTForms扩展.

WTForms extensions for Tornado.

pip install wtforms-tornado

WTForms-龙卷风

这篇关于龙卷风和WTForms的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 18:35