我看了這個帖子How can I get the length of a MongoDb array field?如何在pymongo中獲取數組長度?
我想這些代碼:
results=db.posts.find()
results[0].comments.length
我相信崗位和評論存在。但它不起作用。它會返回一個錯誤:
AttributeError: 'comments' object has no attribute 'length'
如何解決它?
我看了這個帖子How can I get the length of a MongoDb array field?如何在pymongo中獲取數組長度?
我想這些代碼:
results=db.posts.find()
results[0].comments.length
我相信崗位和評論存在。但它不起作用。它會返回一個錯誤:
AttributeError: 'comments' object has no attribute 'length'
如何解決它?
這部分代碼在Jinja2中使用。還有一個過濾器來計算jinja2中的數組長度。這是{{results [0] .comments |長度}} – tim