在没有休息的普通django项目中,我在模板中做了类似的事情:
{% if request.user.is_authenticated %}
<p>Hello {{request.user.username}}</p>
{% else %}
<a href="/login/">Login</a>
如何使用AngularJs做同样的事情?我正在使用django-rest-auth,虽然我没有正确设置登录方法,所以我从管理面板登录进行测试。任何帮助表示赞赏!
答案 0 :(得分:0)
请查看此示例项目,该项目将向您解释如何将django-rest-auth api端点与angularjs一起使用:django-rest-auth with angularjs
此示例项目由django-rest-auth本身推荐。点击此处了解详情:documentation of django-rest-auth