python – Django的AUTH_PROFILE_MODULE更改登录成功网址?

前端之家收集整理的这篇文章主要介绍了python – Django的AUTH_PROFILE_MODULE更改登录成功网址?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

settings.py

AUTH_USER_MODEL = "app_registration.MyUser"
AUTH_PROFILE_MODULE = 'app_registration.MyUserProfile'

models.py

class MyUserProfile(models.Model):
    user = models.ForeignKey(MyUser,unique=True)
    ...
    MyUser.profile = property(lambda u: MyUserProfile.objects.get_or_create(user=u)[0])

的login.html

所以我这样做是为我的自定义MyUser模型创建MyUserProfile模型.
一切正常,除了登录时(localhost / accounts / login),url被重定向到htp:// localhost:9999 / accounts / profile而不是我在表单隐藏输入中指定的索引页面.

这个重定向网址在哪里定义.. ??

最佳答案
使用LOGIN_REDIRECT_URL

LOGIN_REDIRECT_URL

Default: ‘/accounts/profile/’

The URL where requests are redirected after login when the
contrib.auth.login view gets no next parameter.

This is used by the login_required() decorator,for example.

原文链接:https://www.f2er.com/python/439590.html

猜你在找的Python相关文章