博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
瀑布流(基于Django)
阅读量:6844 次
发布时间:2019-06-26

本文共 653 字,大约阅读时间需要 2 分钟。

# 后端from django.shortcuts import render, HttpResponsefrom django.http import JsonResponsefrom app01 import modelsimport jsonfrom django.db.models import Qdef imgs(request):    return render(request, 'img.html')def get_imgs(request):    nid = request.GET.get('nid')    img_list = models.Img.objects.filter(Q(id__gt=nid)&Q(id__lt=(nid+7))).values('id', 'src', 'title') # 一次从数据库取7张图片    img_list = list(img_list)    ret = {        'status': True,        'data': img_list    }    return JsonResponse(ret)
# HTML    
Title
姑娘们

 

转载于:https://www.cnblogs.com/linyuhong/p/10351042.html

你可能感兴趣的文章