如何在 Deform/Colander 中进行简单的值检查和错误消息

发布于 2024-11-25 10:26:27 字数 213 浏览 1 评论 0原文

我正在 Deform/Colander 中实现一个简单的“勾选同意条款和条件框”。

因此,我只是想检查该框是否已选中,并显示一条错误消息“您必须同意条款和条件”。

我知道我可以使用:

colander.OneOf([True]) 

来确保选中该框。但是,OneOf 不允许自定义错误消息。这样做的正确方法是什么?

I'm implementing a simple 'tick to agree to terms and conditions box' in Deform/Colander.

So, I simply want to check that the box is checked and have an error message saying 'You must agree to T&C'.

I understand that I can use:

colander.OneOf([True]) 

to ensure the box is ticked. However, OneOf does not allow for a custom error message. What would the correct way to do this be?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

任性一次 2024-12-02 10:26:27

使用自定义验证器:

def t_and_c_validator(node, value):
    if not value:
        raise Invalid(node, 'You must agree to the T&C')

class MySchema(colander.Schema):
    t_and_c = colander.SchemaNode(
                  colander.Boolean(),
                  description='Terms and Conditions',
                  widget=deform.widget.CheckboxWidget(),
                  title='Terms and Conditions',
                  validator=t_and_c_validator,
                  )

Use a custom validator:

def t_and_c_validator(node, value):
    if not value:
        raise Invalid(node, 'You must agree to the T&C')

class MySchema(colander.Schema):
    t_and_c = colander.SchemaNode(
                  colander.Boolean(),
                  description='Terms and Conditions',
                  widget=deform.widget.CheckboxWidget(),
                  title='Terms and Conditions',
                  validator=t_and_c_validator,
                  )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文