获取 except ObjectDoesNotExist 来定向到 Django 中的视图

发布于 2024-10-06 13:07:43 字数 247 浏览 3 评论 0原文

如果 ObjectDoesNotExist 为 True,我需要一种方法来返回到视图的重定向。我正在尝试这个:

除了 ObjectDoesNotExist: return HttpResponseRedirect(reverse('create_profile'))

但我收到了 arg 和 kwarg 争论,这是有道理的。

但我思考这个问题的方式正确吗?

欢迎提出建议。

I need a way to return a redirect to a view if ObjectDoesNotExist is True. I was trying this:

except ObjectDoesNotExist:
return HttpResponseRedirect(reverse('create_profile'))

But I'm getting arg and kwarg arguements, which makes sense.

But am I thinking about this the right way?

Suggestions welcome.

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

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

发布评论

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

评论(1

冰雪之触 2024-10-13 13:07:43

reverse() 提供 create_profile 视图通常采用的值。

Supply to reverse() the values that the create_profile view would normally take.

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