2014-03-31 125 views

回答

0

你應該分享你的views.py代碼。
反正你可以使用HttpResponseRedirect
例子:

 
from django.http import HttpResponseRedirect 
def index(request): 
    # you logic to check login 
    return HttpResponseRedirect('/') # it will redirect you to "/" 
相關問題