python-django中的ajax请求

 在视图文件中定义:
       from django.http import JsonResponse
       from .models import Students
       def userList(request):
           stuList = Students.objects.all()
           list = []
           for stu in stuList:
               list.append([stu.id,stu.sname,stu.sage,stu.sgender])
           return JsonResponse({"data":list})

   在html文件中定义:
       
       

   在setting.py文件中添加静态路径:
       STATICFILES_DIRS = (
           os.path.join(os.path.dirname(__file__), '..', 'static').replace('\\','/'),
           os.path.join('static'),
       )
在app的urls.py配置文件中配置路径:
        url('userList/',views.userList),

你可能感兴趣的:(思普大数据技术)