我正在通过iframe呈现网页。在iframe成功提交表单后,我给了
return HttpResponseRedirect("www.google.com")
但目标页面也在iframe中加载。如何指定从django视图重新加载的父级?
答案 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'}