标签:json imp pre .com 代码 api接口 使用方法 字典 src
JsonResponse作用:通常用于捡写API接口时,各个业务系统之间数据传递所使用class Json(View):
def get(self,request): #get方法
data={"name":"kang","age":18}
from django.http import JsonResponse #导入django的JsonResponse方法
return JsonResponse(data) #返回一个字典格式给浏览器
标签:json imp pre .com 代码 api接口 使用方法 字典 src
原文地址:https://blog.51cto.com/12965094/2389868