说明
1、要定义必填字段,只需要 fields 里面加入 required 并将参数设置为 True 即可。
2、还可以自定义错误信息,使用 error_messages 即可。
实例
frompprintimportpprint frommarshmallowimportSchema,fields,ValidationError classUserSchema(Schema): name=fields.String(required=True) age=fields.Integer(required=True,error_messages={'required':'Ageisrequired.'}) city=fields.String( required=True, error_messages={'required':{'message':'Cityrequired','code':400}}, ) email=fields.Email() try: result=UserSchema().load({'email':'foo@bar.com'}) exceptValidationErroraserr: pprint(err.messages)
以上是python使用required定义必填字段,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。