django httpresponse返回json
时间: 2023-03-23 12:04:55 浏览: 293
django实现HttpResponse返回json数据为中文
可以使用 Django 的 JsonResponse 方法来返回 JSON 格式的数据,示例代码如下:
```python
from django.http import JsonResponse
def my_view(request):
data = {'name': 'John', 'age': 30}
return JsonResponse(data)
```
这样就可以返回一个包含 name 和 age 字段的 JSON 对象。
阅读全文