Django 开发过程中问题

2018-08-16  本文已影响0人  vckah
def clean(self):
    password = self.cleaned_data.get('password ')
    re_password = self.cleaned_data.get('re_password ')
    if re_password and re_password != password:
        self.add_error('re_password', ValidationError("两次密码不一致"))
    else:
        return self.clean_data

注意:全局验证的时候需要返回 self.cleaned_data,局部例如 def clean_username 时候需要返回字段的名称。

ret = models.xxx.objects.all.extra(
    select={“x”: “date_format(create_time, '%%Y-%%m')”}
).values('c').annotate(x=Count('id')).values('c', 'x')
from bs4 import BeautifulSoup as bs
html = bs(content, 'lxml')
desc = html.text[0:150]
过滤非法标签
for tag in html.find_all():
        if tag.name in ['script', 'link']:
            # 删除此标签
            tag.decompose()
            # 或者可以使用 replace_with() 替代
# 静态字段
user_type=fields.ChoiceField(
    choices=[(1,"普通用户"),(2,"超级用户")],
    widget=widgets.Select,
    )
# 数据库中取字段,但是数据库更改后不会同步
user_type=fields.ChoiceField(    
    choices=models.UserType.objects.all().values_list("id","name"),#要返回元组列表
     widget=widgets.Select,
    )
# 同步数据库,重新写 __init__ 方法
 在 form 中
user_type=fields.ChoiceField(
    choices=models.UserType.objects.all().values_list("id","name"),
    widget=widgets.Select,
    )
def __init__(self,*args,**kwargs):
    super(UserInfoForm,self).__init__(*args,**kwargs)       
    self.fields["user_type"].choices=models.UserType.objects.all().values_list("id","name")
上一篇下一篇

猜你喜欢

热点阅读