我有一个将数据提交到数据库的django表单。表单已成功填写并提交数据后,表单将重定向到另一页。但是,当用户点击浏览器上的后退按钮时,数据会恢复。
有没有办法阻止数据回来?
答案 0 :(得分:4)
将此添加到您的HTML中,它不会缓存:
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate, post-check=0, pre-check=0" />
<meta http-equiv="Pragma" content="no-cache" />
如果你想要一个Django特定的答案。尝试这个虽然结果应该相同:
response = HttpResponse() # Created a HttpResponse
response['Cache-Control'] = 'no-cache' # Set Cache-Control Header