如何在 Deform/Colander 中进行简单的值检查和错误消息
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用自定义验证器:
Use a custom validator: