【说站】python使用required定义必填字段
2024-12-23
3
python使用required定义必填字段
说明
1、要想定义必填字段,只需要在 fields 里面加入 required 参数并设置为 True 即可。
2、还可以自定义错误信息,使用 error_messages 即可。
实例
from pprint import pprint from marshmallow import Schema, fields, ValidationError class UserSchema(Schema): name = fields.String(required=True) age = fields.Integer(required=True, error_messages={'required': 'Age is required.'}) city = fields.String( required=True, error_messages={'required': {'message': 'City required', 'code': 400}}, ) email = fields.Email() try: result = UserSchema().load({'email': 'foo@bar.com'}) except ValidationError as err: pprint(err.messages)
以上就是python使用required定义必填字段,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:4小时前赞一波!1
相关文章
- 【说站】python marshmallow如何提供默认值
- 【说站】python dump方法的序列化
- 【说站】python中的Locust是什么
- 【说站】python中apply和transform的比较
- 【说站】python中marshmallow库如何使用
- 【说站】python库如何实现对象的转换
- 【说站】python中filter()的多种筛选
- 【说站】python析构函数如何使用
- 【说站】python协程和线程的差异
- 【说站】python私有方法的使用注意
- 【说站】python中__init__ 和__new__的对比
- 【说站】python中类对象及类属性的介绍
- 【说站】python中__call__的触发执行
- 【说站】python类实例化如何实现
- 【说站】python实例属性的查找顺序
- 【说站】python保护变量是什么
- 【说站】python中__enter__和__exit__的应用场景
- 【说站】python数据预处理的三种情况
- 【说站】python自动化测试需要学习什么?
- 【说站】python如何读取不同格式文件
文章评论
评论问答