gpt4 book ai didi

python - 验证多个字段,因为它们是一个?

转载 作者:太空狗 更新时间:2023-10-30 02:49:14 25 4
gpt4 key购买 nike

我的输入格式很奇怪,但符合规范:

enter image description here

用户应在 4 个字段 (!) 中输入 ID,其中 ID 的格式为 460 000 005 001,其中 46 是国家代码,右侧部分是用户的应用引擎 ID。现在我想向这个字段添加验证,但我不能用 wtforms 来做。这是我的表单类:

class RegisterWTForm(Form):
soc_sec = TextField(_('Soc security number'), [validators.Regexp('^[0-9]+$',
message=_('This is not a social security number, please see the example and try again'
)), validators.Required(message=_('Social security number is required')), unique_soc_sec], widget=MyTextInput())
email = TextField(_('Email'),
[validators.Required(message=_('Email is required'
)),
validators.Email(message=_('Your email is invalid'
))], widget=MyTextInput())

def validate_soc_sec(form, field):
if len(field.data) != 10:
raise ValidationError(_('Soc sec must be 10 characters'
))
def validate_email(form, field):
if len(field.data) > 60:
raise ValidationError(_('Email must be less than 60 characters'
))

下面是我现在如何使用变量,它们不是 WTForm 的一部分,而是常规的 http post 参数:

def post(self):
Log1 = self.request.POST.get('Log1')
Log2 = self.request.POST.get('Log2')
Log3 = self.request.POST.get('Log3')
Log4 = self.request.POST.get('Log4')
form = RegisterWTForm(self.request.params)
if form.validate():
logging.info('validated successfully')
else:
logging.info('form did not validate')
self.render_jinja('register.html', form=form, Log1=Log1, Log2=Log2, Log3=Log3, Log4=Log4 )
return ''
email = self.request.POST.get('email')

sponsor_id = '%s%s%s' % (Log2, Log3, Log4)
if sponsor_id:
user = User.get_by_id(long(sponsor_id))
else:
return 'Sponsor with sponsor id %s does not exist' % sponsor_id
if not user:
return 'Sponsor with sponsor id %s does not exist' % sponsor_id

# make a token for a one-time login link that sets the password
# Passing password_raw=password so password will be hashed
# Returns a tuple, where first value is BOOL. If True ok, If False no new user is created

user = self.auth.store.user_model.create_user(email)

有没有办法将我的 4 个变量作为一个变量添加到我的 WTForm 并在那里添加验证,或者我应该为这些字段进行自己的自定义验证?对于我的其他字段,如果该字段未通过验证,我会用红色边框和红色文本制作它们,我想在这里做同样的事情,但如果我不能的话,在表示层中会有很多逻辑使用表单类来完成,并且必须将代码添加到模板中。你能建议做什么吗?

谢谢

更新

我可以创建一个组合字段的 FormField,但它们无法正确呈现,而且我不需要全部 4 项验证。也许你可以告诉我更多如何按照我想要的方式制作它?

class SponsorWTForm(Form):
log1 = IntegerField('log1', [validators.required()])
log2 = IntegerField('log2', [validators.required()])
log3 = IntegerField('log3', [validators.required()])
log4 = IntegerField('log4', [validators.required()])

class RegisterWTForm(Form):
sponsor_id = FormField(SponsorWTForm)

...

enter image description here

最佳答案

看起来 WTForms 使用 field enclosures 解决了这个问题.该链接中的示例适用于具有单独区号和号码字段的电话号码,这与您的多部分 ID 号码用例非常相似。

要正确呈现子表单,您必须定义一个自定义小部件。看the source code for ListWidget .您的小部件可能会相似但更简单(因为我认为您只需要在不同字段之间留一个空格,而不是 HTML 标记)。像

这样简单的东西
return HTMLString(u' '.join([subfield() for subfield in field]))

可能会满足您的需求。然后将 widget=SingleLineWidget()(或您为小部件类命名的任何名称)放入 FormField 构造函数的参数中。

稍微偏离主题,在 Django Forms 中执行此操作的相应方法非常不同:您定义 custom clean and validate methods转换您的数据(即在本例中,将 4 个 ID 字段合并为一个)。

关于python - 验证多个字段,因为它们是一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9188381/

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