10
Django:从字符串中获取模型?
在Django中,您可以指定如下关系: author = ForeignKey('Person') 然后在内部必须将字符串“ Person”转换为模型Person。 该功能在哪里?我想使用它,但是找不到。
133
django
django-models