def gettem(request): if(request.method=='GET'): tem = Iotdata.objects.values_list('tem', flat=True)[0:10] print(tem) return HttpResponse(tem)
认证0级讲师
After Django version 1.7, you can use JsonResponse instead of HttpResponse to return JSON format. Since your tem is a QuerySet object, a plain text string is returned directly after HttpResponse processing, so the result set is spliced together.
After Django version 1.7, you can use JsonResponse instead of HttpResponse to return JSON format. Since your tem is a QuerySet object, a plain text string is returned directly after HttpResponse processing, so the result set is spliced together.