私のコードは次のようなものです:
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 を返さなかったというエラーが発生します。解決策は何ですか?
ありがとう