看板 Python 關於我們 聯絡資訊
tutorial https://thinkster.io/django-angularjs-tutorial github https://github.com/brwr/thinkster-django-angular 在templates/navbar.html裡面 他用變數user.is_authenticated 來切換navbar按鈕 請問在authentication/view.py 裡面 他是如何產生變數 user 並且放在context然後return response? 我隱約覺得這跟django built-in authentication User Class有關聯 但是卻不清楚template裡面的user是怎麼從view.py傳出來的 謝謝大家解答 -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 204.96.168.3 ※ 文章網址: https://www.ptt.cc/bbs/Python/M.1457997041.A.BE8.html
Dforce: https://goo.gl/SdFxMp request.user.is_authenticated() 03/15 08:55
Dforce: django.short.render(request,template_name,dictionary) 03/15 08:56
uranusjr: 來自 django.contrib.auth.context_processors.auth 03/15 14:58
uranusjr: 這個叫 context processor, 詳細解釋請參照文件 03/15 14:59