0
問題は、私は条件が動作していない場合があります。私がprint(p.user)
& print(username)
を書くとき、p.userとusernameの両方が同じ値を返しますが、まだそれは一致しません。また、私が文脈を印刷するとき、それは常に著者にとって偽の値です。django/pythonで文字列が一致しません
def post_full(request, username, slug):
post = Post.objects.filter(slug = slug)
instance = get_object_or_404(Post, slug = slug)
files = file.objects.filter(Post = instance)
context = {'post': instance,'file':files}
for p in post:
if p.user==username:
context.update({'author': True})
else:
context.update({'author': False})
try:
slug = request.POST["query"]
if slug:
print(slug)
query = slugify(slug)
return HttpResponseRedirect('/search/%s/'%query)
except Exception as e:
pass
return render(request, "post_detail.html", context)
try 'username.strip()' –
これは動作しません。 –
も 'p.user'で削除してください。また、大文字小文字の –