如何动态访问外键对象的属性



我目前正在尝试访问for循环中的ForeignKeyto属性,因为我要求它是动态的。django的文档和在线搜索都没有提供任何有用的结果。这是我使用的:Django 1.11与Django CMS 3.5.2和Django国家包。错误消息为:

AttributeError: 'ForeignKey' object has no attribute 'to

但是,访问字段的name或verbose_name,甚至choices属性(对于charFields或IntegerFields(都有效。

型号.py

company = models.ForeignKey(verbose_name=_('Company'), blank=False, null=False, to='accounts.CompanyName',
on_delete=models.CASCADE)

views.py

def generate_view(instance):
model = apps.get_model(app_label='travelling', model_name=str(instance.model))
data = dict()
field_list = eval(instance.fields)
fields = model._meta.get_fields()
output_list = list()
for field in fields:
for list_field in field_list:
if field.name == list_field:
options = list()
if field.__class__.__name__ == 'ForeignKey':
print(field.to) # Here's the error
elif field.__class__.__name__ == 'CountryField':
for k, v in COUNTRIES.items():
options.append((k, v)) # Works properly
elif field.__class__.__name__ == 'ManyToManyField':
pass # Yields the same issues as with foreign keys
output_list.append({
'name': field.name,
'verbose': field.verbose_name,
'options': options,
'type': field.__class__.__name__
})
return data

如您所见,没有一个名为to属性。这是ForeignKey初始值设定项的参数的名称。由于参数可以是字符串模型引用或"self",因此表示实际模型目标的属性应该具有不同的名称是有道理的。

Field属性引用定义了用于内省字段对象的API。你想要的是:

if field.many_to_one:
print(field.related_model)

相关内容

  • 没有找到相关文章

最新更新