标签:com 业务逻辑 files ase 渲染 path def 前缀 html
一、Django的结构
二、静态文件的配置
STATIC_URL = ‘/static/‘ # HTML中使用的静态文件夹前缀 STATICFILES_DIRS = [ os.path.join(BASE_DIR, "static"), # 静态文件存放位置 ]
三、Django必备三件套
HttpResponse 将字符串返回给浏览器
render 除request参数外还接受一个待渲染的模板文件和一个保存具体数据的字典参数。将数据填充进模板文件,最后把结果返回给浏览器。
from django.shortcuts import HttpResponse, render, redirect
def index(request): # 业务逻辑代码 return HttpResponse("OK")
def index(request): # 业务逻辑代码 return render(request, "index.html", {"name": "alex", "hobby": ["烫头", "泡吧"]})
标签:com 业务逻辑 files ase 渲染 path def 前缀 html
原文地址:https://www.cnblogs.com/st-st/p/9845773.html