我的几何应用程序中有 3 个模型:Square_section、T_section、Double_T_section 我想创建一个模型:带有 2 个字段的梁,一个用于在我的几何应用程序中选择模型,另一个字段用于从该特定的所有实例的列表中选择一个实例模型,这样的东西会起作用吗?:
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType
from django.db import models
class beam (models.Model):
slug = models.SlugField()
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
content_object = GenericForeignKey('content_type')
def __str__(self):
return self.slug