python|python django常用的函数
python django常用的函数
1)render(): 渲染页面
from django.shortcuts import renderdef index(request):
return render(request, 'TestModel/index.html')
2)JsonResponse(): 渲染json数据
from django.http import JsonResponsedef upload(request):
return JsonResponse({'result':200, 'success':True})
【python|python django常用的函数】3)HttpResponse:
from django.http import HttpResponse# 下载图片
def download(request, filename):
file = open('%s' %filename).read()
return HttpResponse(file)
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- python自定义封装带颜色的logging模块
- django-前后端交互
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)
- Python(pathlib模块)
- python青少年编程比赛_第十一届蓝桥杯大赛青少年创意编程组比赛细则
- Python数据分析(一)(Matplotlib使用)