0
是否建議或冗餘設置模板和視圖的權限?我應該在模板和視圖中使用Django權限檢查嗎?
考慮任何數據操作到數據庫是通過POST
做如果下面的足夠權限?
{% if perms.system.view_employee %}
<!-- content here -->
{% else %}
<h1>Sorry you do not have permission to access this page<h2>
{% endif %}
還是我也應該實施服務器端檢查(這是否是多餘的,這樣做或必要)?
def my_view(request):
if not request.user.has_perm('polls.can_vote'):
return HttpResponse("You can't access this page")
else:
# do stuff
...
它是如何設置權限? – demalexx 2012-01-18 05:24:54
錯誤添加權限檢查 – 2012-01-18 10:50:25
無論如何,沒有足夠的信息來回答你的問題。如果你提供更多的信息和一些代碼,你會得到一個很好的答案。 – demalexx 2012-01-18 11:37:00