为了账号安全,请及时绑定邮箱和手机立即绑定

DoesNotExist at /profiles/user-profile/

DoesNotExist at /profiles/user-profile/

有只小跳蛙 2023-10-25 10:54:48
我正在尝试添加跟随切换,但在我看来,我在匹配查询集时遇到错误。用户配置文件存在于数据库中,但我仍然不知道为什么会发生这种情况。我希望你能找出我的错误并告诉我如何解决它。我正在学习 Django,如果你能帮助我,那意义重大。我将感谢你。如果需要更多代码来帮助我,我会分享。class UserProfileFollowToggle(View):    def post(self, request, *args, **kwargs):        print(request.POST)        user_to_toggle = request.POST.get('username')        print(user_to_toggle)        profile_ = UserProfile.objects.get(user__username__iexact=user_to_toggle)        user = request.user        if user in profile_.follower.all():            profile_.follower.remove(user)        else:            profile_.follower.add(user)        return redirect("/posts/list/") follow_toggle.html:<form class='form' method='POST' action={% url 'profiles:toggle' %}>{% csrf_token %}<input type='hidden' name='username' value="{% if username %}{{ username }} {% else %}{{ testuser }}{% endif %}"><button class='btn {% if is_following %}btn-default {% else %}btn-primary{% endif %}'>{% if is_following %}Unfollow {% else %}Follow{% endif %}</button></form>
查看完整描述

1 回答

?
阿波罗的战车

TA贡献1862条经验 获得超6个赞

它将在末尾呈现一个空格。因此,模板应如下所示:


#                                                                 no space ↓

<input type='hidden' name='username' value="{% if username %}{{ username }}{% else %}{{ testuser }}{% endif %}">



查看完整回答
反对 回复 2023-10-25
  • 1 回答
  • 0 关注
  • 98 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信