本文整理匯總了Python中models.Document.get_by_id方法的典型用法代碼示例。如果您正苦於以下問題:Python Document.get_by_id方法的具體用法?Python Document.get_by_id怎麽用?Python Document.get_by_id使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類models.Document
的用法示例。
在下文中一共展示了Document.get_by_id方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get
# 需要導入模塊: from models import Document [as 別名]
# 或者: from models.Document import get_by_id [as 別名]
def get(self, document_id):
template_vals = {}
bunnies_result = Bunny.query(Bunny.document_id == str(document_id)).order(Bunny.timestamp).iter()
bunnies = []
for bunny in bunnies_result:
bunnies.append(bunny)
template_vals['bunnies'] = bunnies
template_vals['doc_id'] = document_id
doc = Document.get_by_id(int(document_id))
template_vals['doc_name'] = doc.title
template_vals['lecture_id'] = doc.lecture_id
render(self, template_vals, 'workspace.html')