-
返回表示模板上下文的字典。提供的關鍵字參數將構成返回的上下文。示例用法:
def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context['number'] = random.randrange(1, 100) return context
所有基於類的通用視圖的模板上下文都包含一個指向
View
實例的view
變量。在適當的地方使用
alters_data
請注意,在模板上下文中擁有視圖實例可能會將潛在危險的方法暴露給模板作者。要防止在模板中調用此類方法,請在這些方法上設置
alters_data=True
。有關更多信息,請閱讀有關呈現模板上下文的文檔。
本文介紹django.views.generic.base.ContextMixin.get_context_data
的用法。
聲明
get_context_data(**kwargs)
相關用法
- Python Django ContextMixin.extra_context用法及代碼示例
- Python Django ContentTypeManager用法及代碼示例
- Python Django ContentFile用法及代碼示例
- Python Condition release()用法及代碼示例
- Python Condition notify()用法及代碼示例
- Python Condition wait()用法及代碼示例
- Python Condition acquire()用法及代碼示例
- Python Condition notify_all()用法及代碼示例
- Python Django Concat用法及代碼示例
- Python Collections.UserString用法及代碼示例
- Python Django Coalesce用法及代碼示例
- Python Django Cot用法及代碼示例
- Python Collections.UserDict用法及代碼示例
- Python Django CoordTransform用法及代碼示例
- Python Collections.UserList用法及代碼示例
- Python Django Collate用法及代碼示例
- Python Django ComboField.fields用法及代碼示例
- Python Django Cos用法及代碼示例
- Python Tableau CSVRequestOptions用法及代碼示例
- Python Calendar itermonthdays2()用法及代碼示例
- Python Calendar monthdatescalendar()用法及代碼示例
- Python CSV轉JSON用法及代碼示例
- Python Django CustomUserManager.create_user用法及代碼示例
- Python Calendar itermonthdates()用法及代碼示例
- Python Calendar iterweekdays()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.views.generic.base.ContextMixin.get_context_data。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。