请求浏览器重新加载数据/返回前端Json 数据
右键检查
seeting
network
dissable cache 勾选上
==================================
from django.http import JsonResponse
def index(request):
dic = {'name':'hello','age':18}
return JsonResponse(dic)
右键检查
seeting
network
dissable cache 勾选上
==================================
from django.http import JsonResponse
def index(request):
dic = {'name':'hello','age':18}
return JsonResponse(dic)