获取django模型的类名

获取django模型的类名

本文介绍了获取django模型的类名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个django模型:

  class Book(models.Model):
[..]

我想将模型名称作为字符串:预订。当我尝试这样做:

  Book .__ class __.__ name__ 
/ pre>

它返回'ModelBase'。



任何想法?

解决方案

尝试 Book .__ name __



Django模型派生自 ModelBase ,它是所有模型的元类。


I have a django model:

class Book(models.Model):
  [..]

and I want to have the model name as string: 'Book'. When I try to get it this way:

Book.__class__.__name__

it returns 'ModelBase'.

Any idea?

解决方案

Try Book.__name__.

Django models are derived from the ModelBase, which is the Metaclass for all models.

这篇关于获取django模型的类名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 19:21