Django自带文件存储系统存储在本地文件夹,如果我们将文件存储在云端,需要自定义文件存储系统. 自定义文件存储系统需要继承django.core.files.storage.Storage from django.core.files.storage import Storage class QiNiuStorage(Storage): 添加deconstructible装饰器以允许在迁移数据库时进行迁移 from django.utils.deconstruct import deconst
1.模板标签和模板变量 模板标签在{% %}中定义: {% if is_logged_in %} Thanks for logging in! {% else %} Please log in. {% endif %} 模板变量在 { }中定义: My first name is {{ first_name }}. My last name is {{ last_name }}. 2.Context处理器和 RequestContext处理器 context 是一个传递给模板的名称到值的映射(