Django 模板对象返回空值

发布于 2024-11-06 03:22:01 字数 322 浏览 1 评论 0原文

我从数据库中过滤主题:

subject = subject.objects.filter(id=1)

我尝试将其称为表单模板:

 {{ subject.name|safe }}

它返回空值。我需要循环该对象吗?它只返回一条记录:

>>> subject[0].name
u'010-01 INTERNATIONAL : Organizations'

但是当我输入 {{ subject[0].name|safe }} 时,它也没有返回任何值。

I filter a subject from database:

subject = Subject.objects.filter(id=1)

I tried to call it form template:

 {{ subject.name|safe }}

It return empty value. Do I need to loop the object? It just return a single records:

>>> subject[0].name
u'010-01 INTERNATIONAL : Organizations'

But when I put {{ subject[0].name|safe }}, it return no value too.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

箜明 2024-11-13 03:22:01

尝试:
{{subject.0.name}}

如果您只从数据库中获取一个对象,通常应该使用您

try:
    subject = Subject.objects.get(id=1)
except Subject.DoesNotExist:
    pass #do whatever handling stuff you need to do here

也可以使用 get_object_or_404 快捷方式。

Try:
{{subject.0.name}}

If you're only getting one object from the database, you should typically use

try:
    subject = Subject.objects.get(id=1)
except Subject.DoesNotExist:
    pass #do whatever handling stuff you need to do here

You could also use the get_object_or_404 shortcut.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文