例如,我的文档中有一个名为“x”的字段,其中包含一个巨大的字符串。我希望能够逐字阅读字符串。
client = pymongo.MongoClient("localhost", 27017)
db = client.clients
collection = db.unlabel_review
for post in collection.find():
documents.append(post)
因此,这将返回整个JSON对象列表,并在文档上调用某个索引将返回该文档。返回该文档字段的语法是什么,例如返回“id”或字段“x”,其中x包含字符串?
直观地说,我想说
documents[1] -> returns whole JSON object so
documents[1][1] -> returns the first index of that JSON object, but this doesn't seem to work
感谢您的帮助:)
答案 0 :(得分:0)
我明白了,
documents [1] [“field name”]将返回一个特定字段。