一、 三板斧
''' HttpResponse 返回字符串类型 render 返回html页面,并且在返回给浏览器之前还可以给html文件传值 redirect 重定向 ''' # 视图函数必须返回一个HttpResponse对象 正确 # 看三者的源码(render和redirect继承HttpResponse类) The view app01.views.index didn't return an HttpResponse object. It returned None instead.
二 JsonResponse对象
''' json格式的数据有什么用? 前后端数据交互需要使用到json作为过渡,实现跨语言传输数据 ''' 前端序列化 后端序列 JSON.stringify() json.dumps() JSON.parse() json.loads() #import json # 用json模块 from django.http import JsonResponse # 用django提供的模块,源码中还是继承了json模块 def ab_json(request): # user_dict = {'username': 'lq不想值班', 'password': 123, 'hobby': 'read'} # 先转成json格式字符串 # json_str = json.dumps(user_dict,ensure_ascii=False) # 将该字符串返回 # return HttpResponse(json_str) # 读源码掌握用法 # return JsonResponse(user_dict, json_dumps_params={'ensure_ascii': False}) l = ['lq', 'zd', '小宝'] return JsonResponse(l, safe=False, json_dumps_params={'ensure_ascii': False}) # 默认只能序列化字典,序列化其他需要加safe参数
三 form表单上传文件及后端如何操作
form表单上传文件类型的数据 1、method必须指定成post 2、enctype必须换成formdata(enctype="multipart/form-data") def ab_file(request): if request.method=='POST': print(request.POST) # 只能获取普通的键值对数据,文件不行 print(request.FILES) # 获取文件数据 # <MultiValueDict: {'file': [<TemporaryUploadedFile: IMG_20180304_202709.jpg (image/jpeg)>]}> file_obj=request.FILES.get('file') # 文件对象,和POST.get()一样,取对象列表中的最后一个个对象 print(file_obj.name) with open(file_obj.name,'wb') as f: for line in file_obj.chunks(): # 官方推荐加上chunks方法,其实跟不加是一样的,都是一行行的读取 f.write(line) return render(request,'form.html')
四 request对象方法(补充)
request.method request.POST request.GET request.FILES # 补充 request.path request.path_info request.get_full_path() # 能够获取完整的url及问号后面的参数 request.body # 原生的浏览器发过来的二进制数据 print(request.path) # /app01/ab_file/ print(request.path_info) # /app01/ab_file/ print(request.get_full_path()) # /app01/ab_file/?username=lq
五 FBV与CBV
# 视图函数既可以是函数也可以是类 # CBV # CBV路由 url(r'^login/',views.MyLogin.as_view()) from django.views import View class MyLogin(View): def get(self,request): return render(request,'form.html') def post(self,request): return HttpResponse('post方法') ''' FBV与CBV各有千秋 CBV特点 能够直接根据请求方法的不同直接匹配到对应的方法执行 内部到底是怎么实行的? CBV内部源码 '''
六 CBV源码剖析
# 不要修改源码,有bug很难查找 # 突破口在urls.py urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^login/', views.MyLogin.as_view()) # 上述代码的启动django的时候就会立刻执行as_view方法,as_view返回的的是view函数内存地址 # url(r'^login/',views.view) FBV一模一样 # CBV与FBV在路由匹配上本质是一样的,都是路由,对应,函数内存地址 ] ''' 函数名/方法名 加括号执行优先级最高 猜测 as_view() 要么是被@staticmethod修饰的静态方法 要么是被@classmethod修饰的类方法 @classonlymethod def as_view(cls,**initkwargs): pass ''' @classonlymethod def as_view(cls, **initkwargs): """ cls就是自己写的类 MyCBV Main entry point for a request-response process. """ def view(request, *args, **kwargs): self = cls(**initkwargs) # self=MyLogin(**initkwargs) # cls是我们自己写的类 return self.dispatch(request, *args, **kwargs) ''' 以后要经常需要看源码,但是在看python源码的时候,一定要时刻提醒自己面向对象属性 方法查找顺序 先从对象自己找 再去产生对象的类里面找 之后再去父类找 总结:在看源码只要看到了self点一个东西,一定要问自己当前这个self到底是谁 ''' return view # 闭包函数,调用外部函数,实质就是在调内部函数 # CBV的精髓 def dispatch(self, request, *args, **kwargs): # Try to dispatch to the right method; if a method doesn't exist, # defer to the error handler. Also defer to the error handler if the # request method isn't on the approved list. # 获取当前请求的小写格式,然后比对当前请求方式是否合法 # get请求为例 # post请求 if request.method.lower() in self.http_method_names: handler = getattr(self, request.method.lower(), self.http_method_not_allowed) ''' 反射:通过字符串来操作对象的属性或者方法 handler=getattr(自己写的类产生的对象,'get',当找不到get属性或者方法的时候就会用 第三个参数) handler=我们自己写的类里面的get方法 ''' else: handler = self.http_method_not_allowed return handler(request, *args, **kwargs) # 自动调用get方法 # 要求掌握到不看源码也能够描述出CBV的内部执行流程(******)
标签:self,request,视图,django,json,源码,method,view From: https://www.cnblogs.com/coderxueshan/p/17591428.html