获取 except ObjectDoesNotExist 来定向到 Django 中的视图
如果 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
向
reverse()
提供create_profile
视图通常采用的值。Supply to
reverse()
the values that thecreate_profile
view would normally take.