以图形方式表示模型

时间:2018-05-16 12:42:27

标签: django django-rest-framework

像BuleJ(https://www.bluej.org/)这样的Java环境允许直观地查看对象及其可用的属性和操作:

enter image description here

enter image description here

enter image description here

假设我的应用程序中有一名模特学生:

class Student(models.Model):
    name = models.CharField(max_length=50, blank=True, null = True, )
    address = models.CharField(max_length=50, blank=True, null = True, )

有没有办法以这种图形方式表示此模型的对象?要查看它的属性和方法,可能会调用它们等等?我们可以在Django / DRF中做到吗?

对我而言,所有利益相关者都可以理解这个对象的看法。

1 个答案:

答案 0 :(得分:0)