Change_view 保存重定向的问题

发布于 2024-09-13 02:24:38 字数 395 浏览 6 评论 0原文

我正在尝试更改 django 管理保存按钮的重定向。我在下面粘贴的内容适用于保存现有条目(更新),但不适用于保存新条目。有什么想法吗?

def change_view(self, request, object_id, extra_context=None):
    result = super(TodoAdmin, self).change_view(request, object_id, extra_context)
        if not request.POST.has_key('_addanother') and not request.POST.has_key('_continue'):
            result['Location'] = "/"
    return result

I am attempting to change the redirected for the django admin save button. What I pasted below works on saving an already existing entry (updating) but not on saving a new one. Any thoughts?

def change_view(self, request, object_id, extra_context=None):
    result = super(TodoAdmin, self).change_view(request, object_id, extra_context)
        if not request.POST.has_key('_addanother') and not request.POST.has_key('_continue'):
            result['Location'] = "/"
    return result

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

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

发布评论

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

评论(1

眼藏柔 2024-09-20 02:24:38

我认为你必须修改 add_viewchange_view 的操作方式相同,除非我没有正确理解问题。

I think you will have to modify add_view the same way you did change_view, unless i am not understanding the question correctly.

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