一、Django使用云存储
-
建立项目
django-admin startproject project_demo
-
创建子应用
python manage.py startapp app_name
-
修改配置文件,设置模板视图路径
settings.py
TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR,'templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_process