目录
Django后端不会帮我们处理JSON格式数据,需要自己手动处理request.body中的数据
1.Ajax发送文件数据需要借助js内置对象formdata
主要研究POST请求数据的编码格式
因为GET请求数据就是直接放在url后面的
- text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
- Accept-Encoding:gzip, deflate, br
- Accept-Language:zh-CN,zh;q=0.9,en;q=0.8
- Cache-Control:no-cache
- Connection:keep-alive
- Content-Length:27
- Content-Type:application/x-www-form-urlencoded
username=666666&password=66
- Accept:*/*
- Accept-Encoding:gzip, deflate, br
- Accept-Language:zh-CN,zh;q=0.9,en;q=0.8
- Cache-Control:no-cache
- Connection:keep-alive
- Content-Length:31
- Content-Type:application/x-www-form-urlencoded; charset=UTF-8
username=dream&password=1314521
- def index(request):
- if request.method == 'POST':
- print(request.POST)
- print(request.FILES)
- return render(request, 'index.html')
-
username: <input type="text" name="username" class="form-control">
-
password: <input type="password" name="password" class="form-control">
-
file: <input type="file">
-
<input type="submit" class="btn btn-success">
-
<input type="button" class="btn btn-danger" value="按钮" id="d1">
-
- $("#d1").click(function () {
- $.ajax({
- url: '',
- type: 'POST',
- data: {"username": "dream", "password": 1314521},
- success: function (args) {
-
- },
- })
- })
前后端传输数据的时候一定要保证编码格式数据与真正的数据格式是一致的
- def ab_json(request):
- if request.method == 'POST':
- print(request.POST) #
- return render(request, 'ab_json.html')
-
- $('#d1').click(function () {
- $.ajax({
- url: '',
- type: 'post',
- // 前端数据转JSON格式数据 :JSON.stringify
- data: JSON.stringify({"username": "dream", "password": 521521}),
- // 不指定参数,默认就是 urlencoded
- contentType: 'application/json',
- success: function (args) {
-
- }
- })
- })
{"username":"dream","password":521521}
- def ab_json(request):
- if request.method == 'POST':
- print(request.POST) #
- return render(request, 'ab_json.html')
Django 针对JSON格式的数据不会做任何处理
针对JSON格式的数据需要自己手动处理
- def ab_json(request):
- print(request.is_ajax()) # True
- if request.method == 'POST':
- print(request.POST) #
-
- print(request.body) # 返回的是二进制数据 :b'{"username":"dream","password":521521}'
- # 针对JSON格式的数据需要自己手动处理
- json_bytes = request.body
-
- # (1)方式一:先解码 再转换数据格式
- json_str = json_bytes.decode('utf-8')
- json_dict = json.loads(json_str)
- print(json_dict, type(json_dict)) # {'username': 'dream', 'password': 521521}
-
- # (2)方式二:json.loads(二进制数据) 内部可以自动解码再反序列化
- json_dict_loads = json.loads(json_bytes)
- print(json_dict_loads, type(json_dict_loads)) # {'username': 'dream', 'password': 521521}
-
-
- return render(request, 'ab_json.html')
request.is_ajax()
返回当前请求是否是ajax请求,返回布尔值
print(request.is_ajax()) 正常浏览器网址回车提交的是 GET 请求 - 结果是False 当我们发送ajax请求后 - 结果是True
- // 不指定参数,默认就是 urlencoded
- contentType: 'application/json',
发送的数据一定要符合JSON格式
或经过JSON序列化再传输
通过Ajax传过来的数据是二进制数据
在request.body中要经过自己的反序列化才能拿到我们想要的数据
username: <input type="text" name="username" id="d1">
password: <input type="password" name="password" id="d2">
file: <input type="file" id="d3">
-
-
-
- // 点击按钮向后端发送普通键值对数据和文件数据
- $("#btn").on('click', function () {
- // (1)先生成一个内置对象
- let formDataObj = new FormData();
-
- // (2)支持添加普通的键值对
- formDataObj.append('username', $("#d1").val());
- formDataObj.append('password', $("#d2").val());
-
- // (3)支持添加文件对象 ---> 先拿到标签对象 ----> 再拿到文件对象
- formDataObj.append('myfile', $("#d3")[0].files[0]);
-
- // (4)基于Ajax,将文件对象发送给后端
- $.ajax({
- url: '',
- type: 'post',
- // 直接将对象放到data里面即可
- data: formDataObj,
-
- // Ajax发送文件必须添加的两个参数
- // 不需要使用任何编码 - Django后端能自动识别 formdata 对象
- contentType: false,
- // 告诉浏览器不要对我的数据进行任何处理
- processData: false,
-
- success: function (args) {
-
- }
- })
- })
- def ab_file(request):
- if request.is_ajax():
- if request.method == 'POST':
- print('POST::>>', request.POST)
- # 普通键值对放在了 request.POST 中
- # POST::>>
- print('FILES::>>', request.FILES)
- # 文件数据放在了 request.FILES 中
- # FILES::>>
]}> -
- return render(request, 'ab_file.html')
- // 点击按钮向后端发送普通键值对数据和文件数据
- $("#btn").on('click', function () {
- // (1)先生成一个内置对象
- let formDataObj = new FormData();
-
- // (2)支持添加普通的键值对
- formDataObj.append('username', $("#d1").val());
- formDataObj.append('password', $("#d2").val());
-
- // (3)支持添加文件对象 ---> 先拿到标签对象 ----> 再拿到文件对象
- formDataObj.append('myfile', $("#d3")[0].files[0]);
-
- // (4)基于Ajax,将文件对象发送给后端
- $.ajax({
- url: '',
- type: 'post',
- // 直接将对象放到data里面即可
- data: formDataObj,
-
- // Ajax发送文件必须添加的两个参数
- // 不需要使用任何编码 - Django后端能自动识别 formdata 对象
- contentType: false,
- // 告诉浏览器不要对我的数据进行任何处理
- processData: false,
-
- success: function (args) {
-
- }
- })
- // (1)先生成一个内置对象
- let formDataObj = new FormData();
-
- // (2)支持添加普通的键值对
- formDataObj.append('username', $("#d1").val());
- formDataObj.append('password', $("#d2").val());
-
- // (3)支持添加文件对象 ---> 先拿到标签对象 ----> 再拿到文件对象
- formDataObj.append('myfile', $("#d3")[0].files[0]);
- // Ajax发送文件必须添加的两个参数
- // 不需要使用任何编码 - Django后端能自动识别 formdata 对象
- contentType: false,
- // 告诉浏览器不要对我的数据进行任何处理
- processData: false,
- print('POST::>>', request.POST)
- # 普通键值对放在了 request.POST 中
- # POST::>>
-
- print('FILES::>>', request.FILES)
- # 文件数据放在了 request.FILES 中
- # FILES::>>
]}>
当我们需要使用到非Django内置的第三方模块或者功能组件代码的时候,我们一般情况下会创建一个名为utils的文件夹,在该文件夹中对模块的功能进行划分
注意:样式基于bootstrap,需要引入bootstrap配置
- class Pagination(object):
- def __init__(self, current_page, all_count, per_page_num=2, pager_count=11):
- """
- 封装分页相关数据
- :param current_page: 当前页
- :param all_count: 数据库中的数据总条数
- :param per_page_num: 每页显示的数据条数
- :param pager_count: 最多显示的页码个数
- """
- try:
- current_page = int(current_page)
- except Exception as e:
- current_page = 1
-
- if current_page < 1:
- current_page = 1
-
- self.current_page = current_page
-
- self.all_count = all_count
- self.per_page_num = per_page_num
-
- # 总页码
- all_pager, tmp = divmod(all_count, per_page_num)
- if tmp:
- all_pager += 1
- self.all_pager = all_pager
-
- self.pager_count = pager_count
- self.pager_count_half = int((pager_count - 1) / 2)
-
- @property
- def start(self):
- return (self.current_page - 1) * self.per_page_num
-
- @property
- def end(self):
- return self.current_page * self.per_page_num
-
- def page_html(self):
- # 如果总页码 < 11个:
- if self.all_pager <= self.pager_count:
- pager_start = 1
- pager_end = self.all_pager + 1
- # 总页码 > 11
- else:
- # 当前页如果<=页面上最多显示11/2个页码
- if self.current_page <= self.pager_count_half:
- pager_start = 1
- pager_end = self.pager_count + 1
-
- # 当前页大于5
- else:
- # 页码翻到最后
- if (self.current_page + self.pager_count_half) > self.all_pager:
- pager_end = self.all_pager + 1
- pager_start = self.all_pager - self.pager_count + 1
- else:
- pager_start = self.current_page - self.pager_count_half
- pager_end = self.current_page + self.pager_count_half + 1
-
- page_html_list = []
- # 添加前面的nav和ul标签
- page_html_list.append('''
-
-
- ''')
- first_page = '
- 首页
' % (1) - page_html_list.append(first_page)
-
- if self.current_page <= 1:
- prev_page = '
- 上一页
' - else:
- prev_page = '
- 上一页
' % (self.current_page - 1,) -
- page_html_list.append(prev_page)
-
- for i in range(pager_start, pager_end):
- if i == self.current_page:
- temp = '
- %s
' % (i, i,) - else:
- temp = '
- %s
' % (i, i,) - page_html_list.append(temp)
-
- if self.current_page >= self.all_pager:
- next_page = '
- 下一页
' - else:
- next_page = '
- 下一页
' % (self.current_page + 1,) - page_html_list.append(next_page)
-
- last_page = '
- 尾页
' % (self.all_pager,) - page_html_list.append(last_page)
- # 尾部添加标签
- page_html_list.append('''
-
-
- ''')
- return ''.join(page_html_list)
- def get_book(request):
- book_list = models.Book.objects.all()
- current_page = request.GET.get("page",1)
- all_count = book_list.count()
- page_obj = Pagination(current_page=current_page,all_count=all_count,per_page_num=10)
- page_queryset = book_list[page_obj.start:page_obj.end]
- return render(request,'booklist.html',locals())
- class="container">
- class="row">
- class="col-md-8 col-md-offset-2">
- {% for book in page_queryset %}
-
{{ book.title }}
- {% endfor %}
- {{ page_obj.page_html|safe }}
-
-