["non_field_errors": ["Expected a list of items."]] 使用 MongoDB 在 Django Rest 中保存

Posted

技术标签:

【中文标题】["non_field_errors": ["Expected a list of items."]] 使用 MongoDB 在 Django Rest 中保存数据时【英文标题】:["non_field_errors": ["Expected a list of items."]] when saving data in Django Rest with MongoDB["non_field_errors": ["Expected a list of items."]] 使用 MongoDB 在 Django Rest 中保存数据时 【发布时间】:2014-09-12 00:59:54 【问题描述】:

我是 Django 新手。我正在尝试使用 Django 保存 json 数据。我使用 MongoDB 作为后端和一对多的关系方法来存储数据 - http://docs.mongodb.org/manual/tutorial/model-embedded-one-to-many-relationships-between-documents/

这是我的模型:

class OtherInfo(models.Model):
      info_1 = models.CharField(max_length=200)
      info_2 = models.CharField(max_length=200)
      info_3 = models.CharField(max_length=200)

      def __unicode__(self):
          return u'%s %s %s' % (self.info_1, self.info_2, self.info_3)


    class ModelInfo(models.Model):
     name = models.CharField(max_length=200)
     email = models.CharField(max_length=200)
     other_info = ListField(EmbeddedModelField(OtherInfo))

     def __unicode__(self):
        return u'%s %s' % (self.name, self.email)

问题是 -

@api_view(['GET', 'PUT', 'POST'])
def save(request, format=None):
    serializer = mySerializer(data=request.DATA)
    if serializer.is_valid():
        serializer.save()
        return Response(status=status.HTTP_201_CREATED)
    return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)

序列化器 -

class other_info_serializer(serializers.ModelSerializer):
    class Meta:
        model = OtherInfo
        fields = ('info_1', 'info_2', 'info_3')


    class mySerializer(serializers.ModelSerializer):
      other_info=other_info_serializer(many=True)
      class Meta:
            model = ModelInfo
            fields = ('name', 'email','other_info')

我希望将以上信息保存在数据库中,如下所示


   _id: "joe",
   name: "Joe Bookreader",
   email: "email@example.com",
   other_info: [
                
                  info_1 : "123 Fake Street",
                  info_2: "Faketon",
                ,
                
                  info_1: "1 Some Other Street",
                  info_2: "Boston",
                 
              ]
 

现在当我在 URL 中发送帖子数据时

http://127.0.0.1:8080/save/

Parameter 1 : "name":"sample name" 
Parameter 2 : "email":"sample@email.com"
Parameter 3 : ['info_1':'Google','info_2':'Save','info_1':'Hackhathon','info_2':'Present']

在执行上述请求时,我得到 -

"other_info": ["non_field_errors": ["Expected a list of items."]]

关于发生了什么错误有什么建议吗?

编辑

也尝试过传递名称值对。但还是同样的问题。

Parameter 3 : "other_info" : ['info_1':'Google','info_2':'Save','info_1':'Hackhathon','info_2':'Present']

【问题讨论】:

【参考方案1】:

这个问题是由RelationsList引起的——它没有自己的save函数但是父序列化程序调用了它。

github issue 上存在完全相同的问题。 他们说处理嵌套对象仍处于繁重的开发阶段。 (Link)

但我制作了a patch for this(如下所示),您可以通过sample project 对其进行测试。

class RelationsList(list):
    _deleted = []

    def save(self, **kwargs):
        [obj.save(**kwargs) for obj in self]

【讨论】:

【参考方案2】:

MongoDB 总是需要一个名称-值对,而您没有在第三个参数处提供一个:

 Parameter 3 : ['info_1':'Google','info_2':'Save','info_1':'Hackhathon','info_2':'Present']

这里你只传递一个对象数组。 您的请求必须如下所示:

 Parameter 3 : "other_info" : ['info_1':'Google','info_2':'Save','info_1':'Hackhathon','info_2':'Present']

【讨论】:

试过了。遇到同样的问题。 您还有什么建议吗?

以上是关于["non_field_errors": ["Expected a list of items."]] 使用 MongoDB 在 Django Rest 中保存的主要内容,如果未能解决你的问题,请参考以下文章

使用 FormView 和 ModelForm 时如何在模板上获取 non_field_errors

我厌倦了错误处理

djangorestframework 序列化程序错误:u'non_field_errors': [u'No input provided']

drf 高级三验证

Django:如何显示不特定于字段的验证错误?

51. N-Queens