這篇文章將為大家詳細(xì)講解有關(guān)怎么在Django中利用count()函數(shù)對(duì)數(shù)據(jù)進(jìn)行統(tǒng)計(jì),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)專注骨干網(wǎng)絡(luò)服務(wù)器租用10余年,服務(wù)更有保障!服務(wù)器租用,綿陽(yáng)主機(jī)托管 成都服務(wù)器租用,成都服務(wù)器托管,骨干網(wǎng)絡(luò)帶寬,享受低延遲,高速訪問(wèn)。靈活、實(shí)現(xiàn)低成本的共享或公網(wǎng)數(shù)據(jù)中心高速帶寬的專屬高性能服務(wù)器。一、view實(shí)現(xiàn)計(jì)數(shù)
在apiviews.py中加入以下內(nèi)容
from ApiTest.models import ApiTest from django.shortcuts import render def api_test_manage(request): apitest_count = ApiTest.objects.all().count() return render(request, "apitest_manage.html", {'user': username, 'apitests': apitest_list, 'apitests_count': apitest_count})
二、Html將數(shù)據(jù)渲染展示
在apitest_manage.html中加入: