我是 Django 新手,我现在正在尝试使用该HttpResponseRedirect()
功能。但是我很困惑,如果我像这样使用它HttpResponseRedirect('good/')
,而当前页面是'/bad/'
,它只能被重定向到'/bad/good/'
,这是当前页面的 url 附加了HttpResponseRedirect()
函数中的 url 值。我试图搜索谷歌,但找不到任何解决方案。
如何重定向到具有特定 url 的页面?例如,HttpResponseRedirect('/good/')
to/good/
而不是/bad/good/
?