当我使用wtf_forms和Flask-WTF创建表单并使用IntegerField输入时,不能将其与Length验证器结合使用

如果我删除了“长度限制”,那么它可以正常工作。我当然应该能够对IntegerField应用Length验证吗?

Python代码。

from flask_wtf import Form
from wtforms import TextField, PasswordField, IntegerField, validators

class RegistrationForm(Form):
    firstname = TextField('First Name', [validators.Required()])
    lastname = TextField('Last Name', [validators.Required()])
    telephone = IntegerField('Telephone', [validators.Length(min=10, max=10, message="Telephone should be 10 digits (no spaces)")])

TypeError
TypeError: object of type 'int' has no len()

Traceback (most recent call last)
File "C:\Python27\lib\site-packages\flask\app.py", line 1701, in __call__
return self.wsgi_app(environ, start_response)
File "C:\Python27\lib\site-packages\flask\app.py", line 1689, in wsgi_app
response = self.make_response(self.handle_exception(e))
File "C:\Python27\lib\site-packages\flask\app.py", line 1687, in wsgi_app
response = self.full_dispatch_request()
File "C:\Python27\lib\site-packages\flask\app.py", line 1360, in full_dispatch_request
rv = self.handle_user_exception(e)
File "C:\Python27\lib\site-packages\flask\app.py", line 1358, in full_dispatch_request
rv = self.dispatch_request()
File "C:\Python27\lib\site-packages\flask\app.py", line 1344, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "C:\index.py", line 45, in submit
if form.validate_on_submit():
File "C:\Python27\lib\site-packages\flask_wtf\form.py", line 156, in validate_on_submit
return self.is_submitted() and self.validate()
File "C:\Python27\lib\site-packages\wtforms\form.py", line 271, in validate
return super(Form, self).validate(extra)
File "C:\Python27\lib\site-packages\wtforms\form.py", line 130, in validate
if not field.validate(self, extra):
File "C:\Python27\lib\site-packages\wtforms\fields\core.py", line 175, in validate
stop_validation = self._run_validation_chain(form, chain)
File "C:\Python27\lib\site-packages\wtforms\fields\core.py", line 195, in _run_validation_chain
validator(form, self)
File "C:\Python27\lib\site-packages\wtforms\validators.py", line 91, in __call__
l = field.data and len(field.data) or 0
TypeError: object of type 'long' has no len()

最佳答案

以下错误表示您正在尝试检查python不允许的整数长度。如果要检查长度,则必须为字符串。 IntegerField()但是根据定义是整数

object of type 'int' has no len()

您需要创建如下所示的内容。 NumberRange接受一系列数字。
IntegerField('Telephone', [validators.NumberRange(min=0, max=10)])

另外,我建议您使用FormField并定义自己的电话字段。这里有一个创建电话字段的确切示例:

http://wtforms.simplecodes.com/docs/0.6.1/fields.html#wtforms.fields.FormField

关于python - Flask-WTForms为IntegerField引发错误,而不是验证失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19772494/

10-12 18:55