标签:serialize strong font django bsp init jquer fun mail
Django中的序列化主要应用在将数据库中检索的数据返回给客户端用户,特别的Ajax请求一般返回的为Json格式。
方式一:
=============================views.py==========================
def serialize(request):
return render(request,‘serialize.html‘)
def get_data(request): user_list = models.UserInfo.objects.all() return render(request,‘get_data.html‘,{‘user_list‘:user_list})
=============================serialize.html==============================
<body>
<h1>用户列表</h1>
<table id="tb">
</table>
<script src="/static/js/jquery-3.3.1.js"></script>
<script>
$(function () {
initData();
})
function initData() {
$.ajax({
url:‘/get_data/‘,
type:‘GET‘,
success:function (arg) {
$(‘#tb‘).append(arg)
}
})
}
</script>
</body>
===================================get_data.html===========================
{% for row in user_list %}
<tr>
<td>{{ row.id }}</td>
<td>{{ row.username }}</td>
<td>{{ row.email }}</td>
</tr>
{% endfor %}
标签:serialize strong font django bsp init jquer fun mail
原文地址:https://www.cnblogs.com/zq8421/p/10445168.html