比如在创建记录时间字段之前和之后获取一个帖子
尝试使用以下语句获取文章
# Created is the time of the creation of the current article
# Before a
prev_post = db.Post.find ({'created': {'$ lt': created}}, sort = [('created', -1)], limit = 1)
# After a
next_post = db.Post.find ({'created': {'$ gt': created}}, sort = [('created', 1)], limit = 1)
结果变得不连续,有时会跳过几条记录。我不知道为什么,也许我误解了FIND?请帮忙。