gpt4 book ai didi

python - IntegerField 和必需的验证器不直观?总是需要?

转载 作者:太空狗 更新时间:2023-10-30 00:45:09 24 4
gpt4 key购买 nike

当我将 wtforms.IntegerFieldrequired 验证器一起使用时,我只会收到消息“此字段是必需的”。

另一方面,似乎只能要求 IntegerField 而我不应该使用要求的验证器。

这里的逻辑是什么?这个字段只是添加了一个 is integer 验证器,它应该仍然可以用作必填字段(但必须是 int)或不是必填字段,这没有意义吗?

只是想在这里发现一些模式。

更新:

  • WTForms 版本为 __version__ = '1.0.5'
  • Flask_WTF 版本是 __version__ = '0.9.3'

表单

class OrderForm(Form):
order_number = wtforms.IntegerField('Order Number', validators=[validators.Required()])

查看

    def render_response(self):
ctx = {}
order_form = OrderForm()
ctx['order_form'] = order_form

if order_form.validate_on_submit(): pass
# stuff.
return render_template('support/warranty_form.html', **ctx)

模板

{% macro render_field(field) %}
<div class="form-field-wrapper">
<div class="form-field">
{{ field(**kwargs) }}
</div>
{{ render_field_errors(field) }}
</div>
{% endmacro %}

{{ render_field(order_form.order_number, placeholder="ORDER NUMBER") }}

如果我删除了必需的验证器,我的表单仍然需要该值。

enter image description here

我刚刚在文本字段上使用了自定义验证器。

最佳答案

wtforms Issue #14你可能会感兴趣。用户希望尝试创建一个“NullableIntegerField”。一个想法是使用 optional validator .您可以在下面的脚本中看到它是如何工作的:

from werkzeug import MultiDict
from wtforms import Form, IntegerField, validators

class MyDefaultForm(Form):
my_field = IntegerField('My Field')

class MyRequiredForm(Form):
my_field = IntegerField('My Field', [validators.required()])

class MyOptionalForm(Form):
my_field = IntegerField('My Field', [validators.optional()])

input_data = MultiDict({
'my_field' : ''
})

default_form = MyDefaultForm(input_data)
required_form = MyRequiredForm(input_data)
optional_form = MyOptionalForm(input_data)

print 'Default Form Validation: {0}'.format(default_form.validate())
print 'Default Form Errors: {0}'.format(default_form.errors)
print 'Default Data: {0}'.format(default_form.data)
print

print 'Required Form Validation: {0}'.format(required_form.validate())
print 'Required Form Errors: {0}'.format(required_form.errors)
print 'Required Data: {0}'.format(required_form.data)
print

print 'Optional Form Validation: {0}'.format(optional_form.validate())
print 'Optional Form Errors: {0}'.format(optional_form.errors)
print 'Optional Data: {0}'.format(optional_form.data)
print

结果:

Default Form Validation: False
Default Form Errors: {'my_field': [u'Not a valid integer value']}
Default Data: {'my_field': None}

Required Form Validation: False
Required Form Errors: {'my_field': [u'This field is required.']}
Required Data: {'my_field': None}

Optional Form Validation: True
Optional Form Errors: {}
Optional Data: {'my_field': None}

我创建了三个带有整数字段的表单。一种没有验证器,一种具有必需的验证器,一种具有可选的验证器。您可能希望使用可选的验证器以使结果为 None。

关于python - IntegerField 和必需的验证器不直观?总是需要?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21451058/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com