- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我尝试在模板中打印 usera._meta.get_all_field_names() 中的所有变量时,它给了我比预期多 2 个变量,我不知道为什么。
型号:
class Clovek(models.Model):
user=models.OneToOneField(User)
ulice=models.CharField(max_length=100, blank=True, null=True)
cislo_popisne=models.CharField(max_length=100, blank=True, null=True)
mesto=models.CharField(max_length=100, blank=True, null=True)
psc=models.CharField(max_length=100, blank=True, null=True)
telefonni_cislo=models.CharField(max_length=100, blank=True, null=True)
zdravotni_pojistovna=models.CharField(max_length=100, blank=True, null=True)
模板中的输出:
['cislo_popisne', 'id', 'mesto', 'psc', 'student', 'telefonni_cislo', 'ucitel', 'ulice', 'user', 'zdravotni_pojistovna']
最佳答案
您很可能有另一个模型(或多个模型),其外键为 Clovek
,且具有反向关系名称 ucitel
和 student
。
get_all_field_names()
documentation非常清楚:
Returns a list of all field names that are possible for this model (including reverse relation names)
关于python - usera._meta.get_all_field_names() 中的变量比模型中的变量更多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19166251/
在我的 django-admin 中,我试图使 model 不可编辑。 因此,我正在覆盖 admin.ModelAdmin 的方法get_readonly_fields。 这是我的代码 @admin.
当我尝试在模板中打印 usera._meta.get_all_field_names() 中的所有变量时,它给了我比预期多 2 个变量,我不知道为什么。 型号: class Clovek(models
我有两个模型: class First(models.Model): name = models.CharField(max_length=50, default='n/a') con
出于某种原因,当我运行 self._meta.get_all_field_names() 时,我得到了这个输出: ['account_created', 'email', 'first_name',
我是一名优秀的程序员,十分优秀!