django从视图重定向到iframe的父级

时间:2012-08-24 10:39:38

标签: python django iframe

我正在通过iframe呈现网页。在iframe成功提交表单后,我给了

 return HttpResponseRedirect("www.google.com")

但目标页面也在iframe中加载。如何指定从django视图重新加载的父级?

1 个答案:

答案 0 :(得分:8)

只需返回一些html:

redirect_template.html

<html>
    <head>
        <script>
            window.top.location.href = '{{ redirect_url }}';
        </script>
    </head>
    <body></body>
</html>

而不是:

return HttpResponseRedirect("www.google.com")

使用:

return TemplateResponse(request, 'redirect_template.html', {'redirect_url':'www.google.com'}