本文整理匯總了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)