真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在Django中利用JsonResponse返回數(shù)據(jù)-創(chuàng)新互聯(lián)

這篇文章給大家介紹怎么在Django中利用JsonResponse返回數(shù)據(jù),內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

下冶ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!

urls.py

from django.conf.urls import url
from . import views

urlpatterns = [
  url(r'^show/', views.show_view, name='show')
]

在views.py中創(chuàng)建show_view函數(shù)

from django.http import HttpResponse
from django.shortcuts import render
from .models import *
from django.core.paginator import Paginator, PageNotAnInteger, EmptyPage
from django.http import JsonResponse
def show_view(request):
  # 獲取當(dāng)前頁碼數(shù)
  num = request.GET.get('num', 1)
  n = int(num)
  # 1.查詢stu_student表中的所有數(shù)據(jù)
  stus = Student.objects.all() # 獲取所有的
  # django 分頁
  pager = Paginator(stus, 2)
  # 獲取當(dāng)前頁面的數(shù)據(jù)
  try:
    stuss = Student.objects.all().values()
    students = list(stuss)
    return JsonResponse({'code': 200, 'data': students})
    perpage_data = pager.page(n)
    # 返回第一頁的數(shù)據(jù)
  except PageNotAnInteger:
    perpage_data = pager.page(1)
    # 返回最后一頁的數(shù)據(jù)
  except EmptyPage:
    perpage_data = pager.page(pager.num_pages)
  return render(request, 'show.html', {'show': stus, 'pager': pager, 'perpage_data': perpage_data})

怎么在Django中利用JsonResponse返回數(shù)據(jù)

怎么在Django中利用JsonResponse返回數(shù)據(jù)

關(guān)于怎么在Django中利用JsonResponse返回數(shù)據(jù)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


網(wǎng)頁題目:怎么在Django中利用JsonResponse返回數(shù)據(jù)-創(chuàng)新互聯(lián)
標題網(wǎng)址:http://weahome.cn/article/dopips.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部