MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Mongoengine, die nur einen Teil eines MapField abruft

Wie ich sehe, gibt es dafür ein Ticket:https://github.com/hmarr/mongoengine/ Ausgaben/508

Funktioniert für mich hier ein Beispiel-Testfall:

def test_only_with_mapfields(self):

    class BlogPost(Document):
        content = StringField()
        author = MapField(field=StringField())

    BlogPost.drop_collection()

    post = BlogPost(content='Had a good coffee today...', 
                    author={'name': "Ross", "age": "20"}).save()

    obj = BlogPost.objects.only('author__name',).get()

    self.assertEquals(obj.author['name'], "Ross")
    self.assertEquals(obj.author.get("age", None), None)