我的代码是这样的:
def check(request):
if(success):
#nothing should do
if(fail):
return HttpResponseRedirect("http://google.com")
def index(request):
return check(request)
#some other taskshere after checking login
我在其他帖子中读到,为了HttpResponseRedirect
工作,我们必须在调用时返回它,例如:
return check(request)
当登录失败时,它可以,但是当登录成功时,方法检查没有返回任何内容,因此给出错误索引 方法没有返回HttpResponse
Object 。有什么解决办法?
谢谢