Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 django 社交注册中,通常会重定向到
/social/setup .
所以我写了一个指向那个 url 的视图。但是,为什么有时它会重定向到
/accounts/profile
为什么会这样?
当 Django 不知道要重定向到时,它会重定向到 /accounts/profile。您可以通过在 settings.py 中设置来更改此行为LOGIN_REDIRECT_URL:
LOGIN_REDIRECT_URL
LOGIN_REDIRECT_URL = '/'