在 django 中获取属性

Posted

技术标签:

【中文标题】在 django 中获取属性【英文标题】:Getting attributes in django 【发布时间】:2015-10-20 13:54:09 【问题描述】:

这可能是一个愚蠢的问题,但是如何在 Django 中提取属性?

我正在尝试编写一个从 AboutBio 中提取“body”属性的视图

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.

【问题讨论】:

我推荐看django的教程,基本上你需要创建一个视图和一个模板 The documentation on querysets might help 【参考方案1】:

AboutBio 模型中获取body

AboutBio._meta.get_field('body')

来自docs.

【讨论】:

以上是关于在 django 中获取属性的主要内容,如果未能解决你的问题,请参考以下文章

我可以在 Django 模板中获取特定对象的属性吗?

AttributeError: 'property' 对象没有属性 'copy' - 尝试在 Django Rest 中获取对象列表时

在 Django 中获取模型的字段

获取 AttributeError:“ASGIRequest”对象在 daphne django 中没有属性“get”

Django - 从模型中的所有对象中获取第一个属性

如何从 django 中的表单错误属性中获取值