Django 序列化返回一个空列表
Posted
技术标签:
【中文标题】Django 序列化返回一个空列表【英文标题】:Django Serialization Returns an empty list 【发布时间】:2015-10-08 15:12:42 【问题描述】:你好,我是 Django 的新手。我使用带有 Django 的 Rest API 与我的 android 应用程序进行交互。 我有变量任务所需的数据。由于有多个问题,我使用过滤器而不是获取。
这是我的 Views.py:
class MapertablesViewSet(viewsets.ModelViewSet):
"""
API endpoint that allows groups to be viewed or edited.
"""
queryset = Mapertables.objects.all()
serializer_class = MapertablesSerializer
lookup_field = 'category_id'
def get_queryset(self):
#print self.kwargs['category_id']
maps = Mapertables.objects.filter(category_id=self.kwargs['category_id'])
#queryset = list(maps)
#queryset = serializers.serialize('json',maps)
#print "AAAA ",queryset
i = 0
#quest =
queryset = []
queslist = []
for question in maps:
quest =
quest['question'] = question.question_id
#print 'qqqq ',question.question_id
#queryset = serializers.serialize('json',[question,])
choices = Choice.objects.filter(question=question.question_id)
print choices
#aaa = chain(question,choices)
#print aaa
#queryset = serializers.serialize('json',[question,choices,])
j = 0
for option in choices:
quest[j] = option.choice_text
j += 1
print 'data Here ',quest
#data Here 0: u'Highbury', 1: u'Selhurst Park', 2: u'The Dell', 3: u'Old Trafford', 'question': <Question: At which ground did Eric Cantona commit his "Kung Fu" kick ?>
serializer_class = CoustomeSerializer(queryset, many=True)
print serializer_class.data
#[]
json = JSONRenderer().render(serializer_class.data)
print 'JSON',json
#[]
i += 1
queryset = queslist
serializer_class = CoustomeSerializer(queryset,many=True)
return queryset
#print "questions",queslist
#print "Ser ",ser.data
这是我的 serializers.py:
class MapertablesSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = Mapertables
fields = ('question_id','category_id')
class CoustomeSerializer(serializers.HyperlinkedModelSerializer):
#questions = MapertablesSerializer(source='question_id')
#choices = ChoiceSerializer(source='choice_text')
class Meta:
model = Question,Choice,Category
fields = ('choice_text','choice_text','choice_text','choice_text','question_id')
定义为显示的 URL: http://127.0.0.1:8000/mapers/ 异常类型:KeyError 异常值:'category_id'
当我查询特定类别时,它会返回: http://127.0.0.1:8000/mapers/2/ “详细信息”:“未找到。”
Model.py文件如下:
from django.db import models
# Create your models here.
class Category(models.Model):
category_name = models.CharField(max_length=200,default='1')
def __str__(self):
return self.category_name
class Question(models.Model):
question_text = models.CharField(max_length=200)
#category_name = models.ForeignKey(Category)
pub_date = models.DateTimeField('date published')
def was_published_recently(self):
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
was_published_recently.admin_order_field = 'pub_date'
was_published_recently.boolean = True
was_published_recently.short_description = 'Published recently?'
def __str__(self):
return self.question_text
class Mapertables(models.Model):
category_id = models.ForeignKey(Category)
question_id = models.ForeignKey(Question)
class Choice(models.Model):
question = models.ForeignKey(Question)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __str__(self):
return self.choice_text
我想获取与类别相关的所有问题,并且选择模块中的选择说明了为什么 get_queryset 中的所有内容。
请告诉我如何在 MapertablesViewSet 类中获取我需要的所有数据
如果您希望我发送完整的项目,请提前告诉我,我会制作 zip 并将其上传到驱动器或其他东西。
【问题讨论】:
你看到了 quest 和 serializer_class 的输出,这就是代码被破坏的地方。 【参考方案1】:您正在从您的 get_queryset
方法返回一个空列表,因此列表视图中没有返回任何对象,并且 pk
无法检索特定对象。
您似乎在您的 get_queryset
方法中做了很多不相关的事情,它们可能导致了这个问题。您不应该在那里进行任何序列化,DRF 稍后会为您处理。您应该在filter_queryset
方法中进行过滤,或者将其传递给 DRF 来执行。您也不能从该方法返回任何响应,只能返回一个查询集。
【讨论】:
感谢您的宝贵时间。 get_queryset 中的东西是获取 category 上的所有数据库。我获取类别 ID 并检索问题。问题的获取选择。有没有简单的方法来做到这一点。如果是这样,请建议。真的谢谢你..我也会看看filter_queryset【参考方案2】:@Kevin Brown 是对的,您不必担心序列化程序或在 get_queryset
方法上渲染任何内容,但我在您的 get_queryset
方法中注意到的一件事是您没有将任何项目附加到列表中queryset
和 querylist
。我在下面给你一个想法:
def get_queryset(self):
#print self.kwargs['category_id']
maps = Mapertables.objects.filter(category_id=self.kwargs['category_id'])
i = 0
queryset = []
for question in maps:
quest =
quest['question'] = question.question_id
choices = Choice.objects.filter(question=question.question_id)
print choices
j = 0
for option in choices:
quest[j] = option.choice_text
j += 1
print 'data Here ',quest
# Adding items to queryset list
queryset.append(quest)
i += 1
# You should have values here on queryset list
print queryset
return queryset
对于 URL,请确保您将 category_id
作为 URL 模式的参数传递。 url(r'^mapers/(?P<category_id>\d+)/?'
之类的东西,如果您没有为此使用 routers
。如果您在此处粘贴您的 URL 定义,那就太好了。好吧,我希望它可以帮助您更好地了解如何继续。
【讨论】:
以上是关于Django 序列化返回一个空列表的主要内容,如果未能解决你的问题,请参考以下文章