我正在尝试实现用户注册和编辑表单:
class UniqueEmail(formencode.FancyValidator):
def _to_python(self, value, state):
if value in (email for (email, ) in DBSession.query(User.email)):
raise Invalid('Email already registered. '
'A single account per email is allowed', value, state)
return value
class UserEditData(formencode.Schema):
name = validators.String(not_empty=True)
email = All(validators.Email(not_empty=True),
UniqueEmail())
它在注册时完美运行,但在编辑时,如果用户保持电子邮件不变,我会(很明显)得到一个 Invalid 异常,因为电子邮件已经在数据库中。
我有当前user
可用的(通过request.user
),所以我可以从查询中省略user.email
,但我如何user
在UniqueEmail
验证器中提供?