其他分享
首页 > 其他分享> > Django查询表数据转换成JSON格式

Django查询表数据转换成JSON格式

作者:互联网

Django查询表数据转换成JSON格式

model层:

class StudentInfo(models.Model):
    stu_id = models.CharField(primary_key=True, max_length=20)
    stu_name = models.CharField(max_length=20)
    stu_password = models.CharField(max_length=20)

    def __unicode__(self):
        return '%s' % self.stu_name

    def toJSON(self):
        import json
        return json.dumps(dict([(attr, getattr(self, attr)) for attr in [f.name for f in self._meta.fields]]))

查询语句:

from .models import StudentInfo

def Search(request):
    students = StudentInfo.objects.get(stu_name='zhangsan')
    return HttpResponse(students.toJSON())

标签:转换成,20,name,models,self,Django,stu,JSON,toJSON
来源: https://blog.csdn.net/CirtusSoda/article/details/116204942