如何访问 django 模板中的 django ManyToManyField
Posted
技术标签:
【中文标题】如何访问 django 模板中的 django ManyToManyField【英文标题】:How to acces the the django ManyToMany Field in django Template 【发布时间】:2019-05-24 01:11:49 【问题描述】:我的模型中有一组属性,其中一个属性是类型多对多字段。我可以访问模板中的所有属性,而不是一个多对多字段。
我已尝试在我的模板中进行以下操作
% for post in all_posts %
post.likes
% endfor %
models.py
class Posts(models.Model):
title = models.CharField(max_length=250, blank=False)
content = models.CharField(max_length=15000,
help_text="Write Your thought here...")
creation_time = models.DateTimeField(auto_now_add=True, editable=False)
likes = models.ManyToManyField(User, blank=True, related_name='likes')
views.py
def home(request):
template = loader.get_template('home.html')
all_posts = Posts.objects.all()
context =
'all_posts': all_posts,
return HttpResponse(template.render(context, request))
当我使用 post.likes
时,页面上呈现的是 auth.User.None
【问题讨论】:
【参考方案1】:您必须遍历所选帖子的所有赞
试试这样的:
% for post in all_posts %
% for like in post.likes.all %
like
% endfor %
% endfor %
【讨论】:
以上是关于如何访问 django 模板中的 django ManyToManyField的主要内容,如果未能解决你的问题,请参考以下文章