本文整理汇总了Python中db.Share.find_one方法的典型用法代码示例。如果您正苦于以下问题:Python Share.find_one方法的具体用法?Python Share.find_one怎么用?Python Share.find_one使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类db.Share
的用法示例。
在下文中一共展示了Share.find_one方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from db import Share [as 别名]
# 或者: from db.Share import find_one [as 别名]
def get(self):
page = self.get_argument("page", 1)
per_page = self.get_argument("per_page", 10)
per_page = int(per_page)
page = int(page)
entity_type = self.get_argument("entity_type", 'share')
user_id = self.current_user["user_id"]
assert entity_type in 'share comment viewpoint'.split()
cond = {
'user_id': user_id,
'entity_type': entity_type,
'collectnum': 1,
}
number = Collect.find(cond, {'_id': 0}).count()
collects = Collect.find(cond, {'_id': 0}).sort(
'_id', -1).limit(per_page).skip((page - 1) * per_page)
res = []
print(collects.count())
for collect in collects:
# 'status': {'$gte': 1},
share = Share.find_one({'id': collect.id}, {'_id': 0})
share = fix_share(share)
res.append(share)
self.res = res
return self.write_json(number=number)