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:
原文链接:https://www.f2er.com/python/439590.htmlLOGIN_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.