如何解决Django中的if语句未显示输出
我想在request.user编写的注释旁边显示一个删除按钮,以便只有他们可以删除它们,但是由于某种原因无法使我的if语句起作用。这是我的模板:
df.to_gbq('dataset1.testtable1','newproject1',chunksize=None,reauth=False,if_exists='append')
df.to_gbq('dataset1.testtable2',if_exists='append')
df.to_gbq('dataset1.testtable3',if_exists='append')
df.to_gbq('dataset1.testtable4',if_exists='append')
df.to_gbq('dataset1.testtable5',if_exists='append')
这是{% for post in posts %}
...
{% if post.comment_set.all %}
{% for comment in post.comment_set.all %}
<img src="{{ comment.user.image }}">
<p>{{ comment.body }}</p>
{% if comment.user == request.user %}
# delete icon with modal
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
标记不起作用。我尝试在if comment.user == request.user
标签中同时输出comment.user
和request.user
,并且都以我期望的方式显示,因此无法理解为什么它不起作用。我还测试了删除按钮,当删除if语句时,该按钮可以正确显示。
以下是我相关的参考模型:
<p>
奇怪的是,在页面的上方,我使用了类似的代码,使用class Comment(models.Model):
user = models.ForeignKey(Profile,on_delete=models.CASCADE)
post = models.ForeignKey(Post,on_delete=models.CASCADE)
body = models.TextField()
class Post(models.Model):
content = models.TextField()
author = models.ForeignKey(Profile,on_delete=models.CASCADE)
image= models.ImageField(blank=True,null=True,default='profile_pics/default.png',upload_to='profile_pics')
class Profile(models.Model):
user = models.OnetoOneField(User,on_delete=models.CASCADE)
在博客帖子本身旁边显示了删除。基于此,我尝试将多余的if标记更改为{% if post.author.user == request.user %}
,comment.author.user
,comment.post.author
和其他变体,到目前为止没有任何效果。我在做什么错了?
解决方法
请求对象是否包含在上下文中? 您可能需要将请求添加到settings.py中的上下文处理器块中 包括这个
'django.template.context_processors.request',
像这样,request.user将在模板变量中可用。
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates','DIRS': [BASE_DIR + '/templates'],'OPTIONS': {
'debug': DEBUG,'context_processors': [
'django.contrib.auth.context_processors.auth','django.template.context_processors.debug','django.template.context_processors.media','django.template.context_processors.static','django.template.context_processors.request',],},]
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。