如何使用jQuery实现瀑布流页面-创新互联
这篇文章主要介绍了如何使用jQuery实现瀑布流页面,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
具体内容如下
views.py
from django.shortcuts import render,HttpResponse from app01 import models import json # Create your views here. def index(req): if req.method == 'POST': dic = models.Upload.objects.filter(status=1).values('img1','name','info') dic = list(dic) dic = json.dumps(dic) print(dic) return HttpResponse(dic) return render(req, 'index.html')
url.py
from django.conf.urls import url from django.contrib import admin from app01 import views urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^index/', views.index), ]
index.html
Title