本文整理汇总了Python中models.Video.get方法的典型用法代码示例。如果您正苦于以下问题:Python Video.get方法的具体用法?Python Video.get怎么用?Python Video.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Video
的用法示例。
在下文中一共展示了Video.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get
# 需要导入模块: from models import Video [as 别名]
# 或者: from models.Video import get [as 别名]
def get(self, id=1):
video = Video.get(id)
debug = str(video)
render_template(self, 'video.html', {
'video': video,
'debug': debug,
})
示例2: post
# 需要导入模块: from models import Video [as 别名]
# 或者: from models.Video import get [as 别名]
def post(self, id):
video = Video.get(id)
author = cgi.escape(self.request.get('author'))
text = cgi.escape(self.request.get('text'))
comment = Comment(video=video, author=author, text=text)
comment.save()
self.redirect('/video/%s' % id)