首页 > 其他 > 详细

Django_Form表单补充

时间:2017-09-18 19:20:33      阅读:300      评论:0      收藏:0      [点我收藏+]


def clean(self):

        print("---",self.cleaned_data)
        #  if self.cleaned_data["password"]==self.cleaned_data["repeat_password"]:        
        #  报错原因:self.cleaned_data是干净数据,如果页面没有输入内容,则self.cleaned_data没有password。
        改如下:
        if self.cleaned_data.get("password")==self.cleaned_data.get("repeat_password"):
            return self.cleaned_data
        else:
            raise ValidationError("两次密码不一致")

 

 2  为什么要用全局clean():

技术分享

技术分享

技术分享

技术分享

按子段顺序一一校验,即校验到username时,你无法使用self.cleaned_data.get("password")。

而局部钩子使用完,到全局时,已经可以使用所有的self.cleaned_data

3

技术分享

 

Django_Form表单补充

原文:http://www.cnblogs.com/hedeyong/p/7488018.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!