zoukankan      html  css  js  c++  java
  • django forms lazy来自数据库的数据

    场景描述:

    在通过forms渲染页面form时,如果通过form.Select渲染一个单选项,而恰好此时的可选项来自数据库时,若数据库中有数据是可以正常运行项目的,但当初始化项目,初始化数据库,没有数据时就会报错。

    解决方案:

    • 使用lazy函数。(from django.utils.functional import lazy)
    • 使用注意:
    lazy(models.Breed.objects.all().values_list,list)()
    
    • 具体代码:
    from django.utils.functional import lazy
    class PetInformation(forms.ModelForm):
        name = CustomCharField(label="Name", help_text="Used to login, please remember your modification", )
        gender = CustomCharField(label="Gender", widget=forms.Select(choices=(("W", "Women"), ("M", "Man"), ("U","Unknown"))))
        weight = CustomCharField(label="Weight",)
        birth_date = CustomCharField(label="Birth Date", widget=forms.DateInput())
        color = CustomCharField(label="Color")
        photo = CustomCharField(label="Photo",widget=forms.FileInput())
        species = CustomCharField(label="Species", widget=forms.Select(choices=lazy(models.Species.objects.all().values_list,list)()))
        breed = CustomCharField(label="Breed", widget=forms.Select(choices=lazy(models.Breed.objects.all().values_list,list)()))
    
        class Meta:
            model = models.Pet
            exclude = ("join_date",)
    
    • 如果涉及到instace的验证,应该使用ModelChoiceField
    • 具体代码:
    species = forms.ModelChoiceField(queryset=models.Species.objects.all(),label="Species",widget=forms.Select(attrs={"class":"form-control form-control-sm bg-light"}))
        breed = forms.ModelChoiceField(queryset=models.Breed.objects.all(),label="Species",widget=forms.Select(attrs={"class":"form-control form-control-sm bg-light"}))
    
  • 相关阅读:
    思科交换机命令
    Cisco2960 交换机密码破解方法
    洛谷 P2147 [SDOI2008]洞穴勘测
    BZOJ 4025: 二分图
    算法笔记--可撤销并查集 && 可持久化并查集
    P5043 【模板】树同构([BJOI2015]树的同构)
    算法笔记--BSGS && exBSGS 模板
    算法笔记--线性基求交模板
    AcWing 246. 区间最大公约数
    2018年长沙理工大学第十三届程序设计竞赛 I 连续区间的最大公约数
  • 原文地址:https://www.cnblogs.com/lisicn/p/15567970.html
Copyright © 2011-2022 走看看