我有下表。
class TempTable(models.Model):
name = models.CharField(max_length=200)
created_at = models.DateTimeField(auto_now_add=True)
...
...
class Meta:
db_table = 'temp_table'
现在假设我知道表名temp_table
。目前,我正在使用以下脚本从model instance
获取table name
。
from django.db.models import get_app, get_models
all_models = get_models()
for item in all_models:
if item._meta.db_table == 'temp_table':
return item
有没有更好的方法来实现这个目标.. ??
答案 0 :(得分:-1)
你可以从下面的模型名称访问模型实例,也可以查看表名,但我认为你不需要这个;
if hasattr("TempTable", "__class__"):
mod = __import__("<your_app_name>.models", fromlist=["TempTable"])
nclss = getattr(mod, "TempTable")
# in here nclss is your model instance so you can use it
# nclss.objects.all().order_by("id")
return nclss
# you can also check the table name but i think you did not need this
if nclss._meta.db_table == "temp_table":
return nclss
我希望它适合你