Django中记住我的Url选项

时间:2016-10-20 11:57:59

标签: python django

在我的django项目中,我想使用“记住我”选项。现在,如果用户点击localhost/home,它会重定向到该用户的主页。如果用户仅点击localhost/,则不是。

Localhost/是我的项目主页的网址,用户可以在其中找到登录和注册。

如果已登录用户,并且用户点击localhost/ urlit应该将用户带到localhost/home

1 个答案:

答案 0 :(得分:2)

  

如果已登录用户存在且用户点击localhost / urlit应该   将用户带到localhost / home

你必须对它进行编程。

def index(request):
    if request.user.is_authenticated():
        return redirect('/home/')