在django 0.96中如果在url.py中配置 (r'^accounts/logout/$', logout) 来使用 django.contrib.auth.logout() 这个默认视图来执行用户的退出,退出的功能能很好的工作,但是《The Django Book》的12章所提到 next_page 参数无效,如果需要实现在退出后跳转到指定的页面最好是自己来实现。可参考djangoproject上的 how-to-log-a-user-out 。
Coding && Gaming