我似乎在django'redirect'之后立即遇到javscript的问题。 我有一个temaplte,在某些方面,使用这个django代码重定向:
def home(request):
return redirect("/someapp/somepage")
到以下html:
<html>
<head>
<script type='text/javascript'>
alert("hello")
</script>
</head>
<body>
<h1> Hello World! </h1>
</body>
</html>
我注意到虽然页面看起来很好,但警告框不会弹出,甚至网址也不会改变。为什么?
非常感谢!