标签:request 创建 method res 参数 django pat 信息 bsp
一、视图函数
1. 视图函数的第一个参数一定是一个HTTPRequest类型的对象,这个对象是Django自动创建的,具体形参名通常用request。通过这个对象,可以调用请求的一些参数,比如request.path,request.method,request.META去查看请求信息。
2. 视图函数必须返回一个HTTPResponse类型的对象,这个对象必须是人工创建的。
标签:request 创建 method res 参数 django pat 信息 bsp
原文地址:http://www.cnblogs.com/pemp/p/6006342.html