Change_view 保存重定向的问题
我正在尝试更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你必须修改
add_view
与change_view
的操作方式相同,除非我没有正确理解问题。I think you will have to modify
add_view
the same way you didchange_view
, unless i am not understanding the question correctly.