这可能是一个愚蠢的问题但是如何在Django中提取属性?
我试图写一个拉动"身体的视图"来自AboutBio的属性
from django.db import models
class AboutBio(models.Model):
body = models.TextField()
title = models.CharField(max_length=144)
def __str__(self):
return self.title
# Create your models here.